Skip to main content
1-Visitor
December 14, 2010
Solved

iteration help

  • December 14, 2010
  • 2 replies
  • 5409 views

Hello,

Does anyone know if there's any documentation on an abstraction for iterative algorithms to solve systems of equations?

Thanks,

D

Best answer by RichardJ

Look up "solve blocks" in the help.

2 replies

RichardJ19-TanzaniteAnswer
19-Tanzanite
December 14, 2010

Look up "solve blocks" in the help.

1-Visitor
December 14, 2010

Why don't you post an example of your problem?

Mike

1-Visitor
December 14, 2010


Mike,

This is an example:

x=sqrt((y-z)*2/r)

z= f*(L/D)*(x/2g)

f= something crazy with x in it

etc…(there are more equations with x in it)

So:

I say I need r to find x, but I need x to find z. I also need x to find f which is a part of finding z. So I guess a value for x, and then I use that value to find r and f. Then I go back and use the value I found for r and f to find x. I keep doing this until the guess and the calculated are the same.

Hopefully this helps,

D

1-Visitor
December 14, 2010

Richard is right. You could use a solve block and set up a series of simultaneous equations.

Mike