how can I fix an error in while loop
2 次查看(过去 30 天)
显示 更早的评论
the two condition of for loops are true, although the function doesn't implement the code under while
while(iter<maxI&dif>Eps)
the error is.
??? Error using ==> and Inputs must have the same size.
Error in ==> sinulator>solve at 356 while(iter<maxI&dif>Eps)
回答(1 个)
Sean de Wolski
2011-6-8
Apparently iter<maxl is a different size than dif>eps
What is the output of these two commands:
size(iter<maxl)
size(dif)
?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!