Click here to Skip to main content
15,914,795 members
Home / Discussions / Algorithms
   

Algorithms

 
GeneralRe: Euqtion of spline thru n points Pin
raesa11-Sep-08 17:37
raesa11-Sep-08 17:37 
QuestionPredict next colour Pin
3fraction31-Aug-08 8:24
3fraction31-Aug-08 8:24 
AnswerRe: Predict next colour Pin
Alan Balkany8-Sep-08 5:44
Alan Balkany8-Sep-08 5:44 
GeneralRe: Predict next colour Pin
3fraction8-Sep-08 7:27
3fraction8-Sep-08 7:27 
GeneralRe: Predict next colour Pin
Alan Balkany8-Sep-08 7:40
Alan Balkany8-Sep-08 7:40 
GeneralRe: Predict next colour Pin
3fraction11-Sep-08 5:37
3fraction11-Sep-08 5:37 
GeneralRe: Predict next colour Pin
Alan Balkany15-Sep-08 3:44
Alan Balkany15-Sep-08 3:44 
GeneralRe: Predict next colour Pin
3fraction15-Sep-08 5:18
3fraction15-Sep-08 5:18 
GeneralRe: Predict next colour Pin
Alan Balkany15-Sep-08 7:06
Alan Balkany15-Sep-08 7:06 
GeneralRe: Predict next colour Pin
3fraction15-Sep-08 8:53
3fraction15-Sep-08 8:53 
GeneralRe: Predict next colour Pin
Alan Balkany16-Sep-08 4:00
Alan Balkany16-Sep-08 4:00 
QuestionWhat's the shortest path for connecting point with specific conditions Pin
fifothekid29-Aug-08 0:33
fifothekid29-Aug-08 0:33 
AnswerRe: What's the shortest path for connecting point with specific conditions Pin
fifothekid29-Aug-08 0:56
fifothekid29-Aug-08 0:56 
AnswerSince you are new here let me explain something Pin
MikeMarq29-Aug-08 12:34
MikeMarq29-Aug-08 12:34 
GeneralRe: Since you are new here let me explain something Pin
fifothekid29-Aug-08 20:20
fifothekid29-Aug-08 20:20 
Questioncreate a plane thru 3 points Pin
raesa28-Aug-08 20:50
raesa28-Aug-08 20:50 
AnswerRe: create a plane thru 3 points [modified] Pin
cp987628-Aug-08 21:34
cp987628-Aug-08 21:34 
GeneralRe: create a plane thru 3 points Pin
raesa28-Aug-08 22:06
raesa28-Aug-08 22:06 
QuestionCount Car on Traffic Algorithm Pin
Erdem İsenkul26-Aug-08 23:06
Erdem İsenkul26-Aug-08 23:06 
AnswerRe: Count Car on Traffic Algorithm Pin
Tim Craig27-Aug-08 22:20
Tim Craig27-Aug-08 22:20 
AnswerRe: Count Car on Traffic Algorithm Pin
Tim Craig28-Aug-08 19:21
Tim Craig28-Aug-08 19:21 
QuestionFactor vs Coefficient Pin
Jim Warburton26-Aug-08 8:36
Jim Warburton26-Aug-08 8:36 
AnswerRe: Factor vs Coefficient Pin
CPallini26-Aug-08 21:38
mveCPallini26-Aug-08 21:38 
QuestionComparing Two Values to get the percentage increase? Pin
Ian Uy19-Aug-08 7:29
Ian Uy19-Aug-08 7:29 
AnswerRe: Comparing Two Values to get the percentage increase? [modified] Pin
Robert.C.Cartaino19-Aug-08 8:36
Robert.C.Cartaino19-Aug-08 8:36 
Ian Uy wrote:
How do you compare two values and say that value 1 is X% larger than value 2


double value1 = 150.0
double value2 = 100.0

double difference = value1 - value2;
double percentageIncrease = (difference / value2) * 100;

It would be said that value1 is 50% larger than value2.
Ian Uy wrote:
value 1 is x fold larger than value 2


Technically, "x fold larger" is a suffix you add to a number to say "multipled by."
double value1 = 200.0;
double value2 = 50.0;

double foldIncrease = value1 / value2;

It would be said that value1 is four-fold larger than value2.

Enjoy,

Robert C. Cartaino

modified on Tuesday, August 19, 2008 4:48 PM

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.