Login Required. Sign up now -- its free!

Projects tagged ‘equation’


[14 total ]

0 Users

Background I'm a ninth grader from India. I was too bored to solve equations and check them all by myself. So I wrote this program Knowledge of the quadratic formula (including imaginary ... [More] roots) and synthetic division will help a lot. Using the code The method for solving linear equations in one variable is quite simple. ax+b = 0 is the format for one variable equations. The variables a and b are determined and x is computed by -b/a The method I have implemented for solving linear equations in two variables is a formula which can be derived by operating on both sets of the equation. The Formula for the equations is Collapse ax + by + c = 0 Collapse dx + ey + f = 0 Collapse x = (fb-ce)/(ae-db) Collapse y = (cd -fa)/(ae-db) To solve quadratic equations, we use the quadratic formula : Collapse Root 1 = (-b + Sqrt(b2 - 4ac))/2a Root 2 = (-b - Sqrt(b2 - 4ac))/2a b2-4ac is called the "Discriminant" which is generally denoted by D If D >= 0, we will get Real roots. Things get complicated when we get imaginary roots. If D [Less]
Created 2 months ago.

0 Users

This project will implement the heat equation with serial and parallel code for performance comparisons. The serial code is written in c, and the parallel code is written with cuda to be executed on ... [More] nvidia gpu's. I will begin with a single GPU, then work up to multiple GPU's. Ultimately I will want to expand the data set across a GPU cluster, which I am currently building as part of my research project. [Less]
Created 2 months ago.

0 Users

Enter a mathematic equation, select maximum, minimum, precision and start : the script will create a mesh from the equation.
Created 12 months ago.

0 Users

My Own AS3 Repository Actual Features: Charts, Fps Counter, Particles, Reflection, Rotation2D, Tree, Ptween (Simple Tween engine), all Documented. Ptween is a lite as3 tween engine that ... [More] features: Multiple properties in a single command line; Overwrite tweens automatically; Garbage Collection; Pause Tweens; Reverse Tweens; Tween by Frames/Time; [Less]
Created 3 months ago.