derivitive matlab temp function
이전 댓글 표시
in matlab how would I ask the user to enter a starting guess V0 to use as the first value for the Newton-Raphson method. If this guess causes the derivative of the temperature function to be zero , the method will immediately fail due to a division by zero. Che
댓글 수: 3
Aquatris
2020년 2월 25일
You require an additional input to your function.
function y = fun(v,v0)
%The Newton Raphson Method
...
%check condition for division by 0
if statement == 0
error('Division by 0 detected, stopping the function');
end
% continue the method
...
end
What exactly is the problem you are running into?
matt noman
2020년 2월 25일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Newton-Raphson Method에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!