Why it says undefined variable x2
이전 댓글 표시
function [x2] = secant(f, x0, x1)
while true
x2 =f(x1)*(x2-x0)/f(x0)+x1;
if x1 == x2
return;
end
x0 = x1;
x1 = x2;
end
end
답변 (1개)
James Tursa
2018년 9월 26일
0 개 추천
You have x2 appearing on the right hand side of your first assignment, before it has been defined.
카테고리
도움말 센터 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!