Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
For 1 ≤ a ≤ 4, find a solution of f(x) = tan(x) + a sin(x)/x = 0 using Newton’s method. Plot the solution as a function of a. Please help me to solve it by matlab.
조회 수: 1 (최근 30일)
이전 댓글 표시

댓글 수: 6
Jan
2022년 2월 8일
"write the equation f(x)=tan(x)+asin(x)/x"
f = @(x) tan(x) + a * sin(x) / x;
Please ask your teacher or read in the book used for the lessons, what the Newton method is. Even WikiPedia explains this exhaustively.
This is a Matlab forum. Asking in a forum cannot replace learning numerical maths.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!