How can I plug a solution from an equation back into another endlessly?
1 次查看(过去 30 天)
显示 更早的评论
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?
回答(1 个)
Image Analyst
2014-4-3
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
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!