Borrar filtros
Borrar filtros

How can I plug a solution from an equation back into another endlessly?

2 visualizaciones (últimos 30 días)
I have two equations, for example:
A=x+yz+B
B=l+p-A
assuming everything but A and B are constants, and I know an initial A or B (so I can get one solution) how can I take that answer and plug it in for the next solution, and iterate through solutions until either zero or set amount of solutions has occurred?

Respuestas (1)

Image Analyst
Image Analyst el 3 de Abr. de 2014
Try a while loop:
A=1
B=1
x=2
y=3
z=4
l=6
p=7
tolerance = 9999999
loopCounter = 1; % Failsafe - max # loops.
while tolerance > 0.1 && loopCounter < 100
A=x+y*z+B
B=l+p-A
tolerance = abs(A) % Whatever ending condition you want.
loopCounter = loopCounter + 1;
end

Categorías

Más información sobre Oceanography and Hydrology en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by