Click here to Skip to main content
15,889,739 members
Home / Discussions / Algorithms
   

Algorithms

 
GeneralRe: combination algorithm Pin
kebd15-Sep-06 8:29
kebd15-Sep-06 8:29 
Questiondfgfdg Pin
Gul zeb14-Sep-06 2:13
Gul zeb14-Sep-06 2:13 
Generalfdfdsf Pin
Gul zeb13-Sep-06 21:43
Gul zeb13-Sep-06 21:43 
GeneralRe: fdfdsf Pin
Ed.Poore14-Sep-06 1:04
Ed.Poore14-Sep-06 1:04 
QuestionBezier curve, Newton-Raphelson method, formula problem, please help! [modified] Pin
srev13-Sep-06 4:29
srev13-Sep-06 4:29 
AnswerRe: Bezier curve, Newton-Raphelson method, formula problem, please help! Pin
El Corazon13-Sep-06 16:14
El Corazon13-Sep-06 16:14 
GeneralRe: Bezier curve, Newton-Raphelson method, formula problem, please help! Pin
srev13-Sep-06 23:42
srev13-Sep-06 23:42 
AnswerRe: Bezier curve, Newton-Raphelson method, formula problem, please help! Pin
ejuanpp13-Sep-06 22:00
ejuanpp13-Sep-06 22:00 
Hi,

If this is your function, y = CalcBezierValue(t, A, B, C, D), the slope function may be (I have not tested it at all)

public float CalcBezierSlope(float t, float A, float B, float C, float D)
{
t = 1 - t; // Reverse the normalised percentage

float F1 = 3 * t * t; // These vars used purely for visual clarity
float F2 = 6 * t - 9 * t * t;
float F3 = 3 * (1 - t) * (1 - t) - 6 * t * (1 - t);
float F4 = -3 * (1 - t) * (1 - t);

// I am not sure about the minus, but since there's function composition t = 1 - t ...
return ( -1 ) * A * F1 + B * F2 + C * F3 + D * F4;
}

and your iteration function may look like

public float CalcBezierNextGuess(float x0, float t, float A, float B, float C, float D)
{
// I am not sure about the minus sign, may be a plus
return t - (CalcBezierValue(t,A,B,C,D) - x0) / CalcBezierSlope(t, A, B, C, D);
}

I might be completely wrong, but I have no time to test this.

Regards,
GeneralRe: Bezier curve, Newton-Raphelson method, formula problem, please help! Pin
srev13-Sep-06 23:40
srev13-Sep-06 23:40 
General44th Mersenne Prime Discovered Pin
Bassam Abdul-Baki13-Sep-06 3:10
professionalBassam Abdul-Baki13-Sep-06 3:10 
GeneralRe: 44th Mersenne Prime Discovered Pin
Paul Conrad13-Sep-06 20:32
professionalPaul Conrad13-Sep-06 20:32 
QuestionImpossible Numbers Pin
ricecake8-Sep-06 4:13
ricecake8-Sep-06 4:13 
AnswerRe: Impossible Numbers Pin
Kacee Giger8-Sep-06 13:13
Kacee Giger8-Sep-06 13:13 
GeneralRe: Impossible Numbers Pin
ricecake8-Sep-06 13:24
ricecake8-Sep-06 13:24 
Questionnth root? Pin
Steve Echols5-Sep-06 19:21
Steve Echols5-Sep-06 19:21 
AnswerRe: nth root? Pin
ejuanpp5-Sep-06 23:07
ejuanpp5-Sep-06 23:07 
GeneralRe: nth root? Pin
Steve Echols6-Sep-06 4:44
Steve Echols6-Sep-06 4:44 
AnswerRe: nth root? Pin
Sauruxum23-Jun-10 2:43
Sauruxum23-Jun-10 2:43 
QuestionCrypto Formula Malfunction Pin
rawstar5-Sep-06 6:34
rawstar5-Sep-06 6:34 
AnswerRe: Crypto Formula Malfunction Pin
Paul Conrad14-Jul-07 10:21
professionalPaul Conrad14-Jul-07 10:21 
QuestionMAP Pin
MHASSANF4-Sep-06 22:36
MHASSANF4-Sep-06 22:36 
Questionwhat are the codes of this Pin
robeelyn2-Sep-06 5:18
robeelyn2-Sep-06 5:18 
AnswerRe: what are the codes of this Pin
Ed.Poore2-Sep-06 9:39
Ed.Poore2-Sep-06 9:39 
GeneralRe: what are the codes of this Pin
Paul Conrad2-Sep-06 12:22
professionalPaul Conrad2-Sep-06 12:22 
GeneralRe: what are the codes of this Pin
Ed.Poore2-Sep-06 13:16
Ed.Poore2-Sep-06 13:16 

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.