필터 지우기
필터 지우기

Writing a problem for a sine wave?

조회 수: 1 (최근 30일)
Nick Haufler
Nick Haufler 2015년 10월 5일
답변: Image Analyst 2015년 10월 5일
For the attached document, can someone look at my code. Im confused as if I got the equation right or not.

채택된 답변

Image Analyst
Image Analyst 2015년 10월 5일
Nick:
You only need Est, not Est(1) because Est is not an array - it's a scalar. Also, don't assign Est to x as the first line because there is no x yet. And you need to initialize Est to x, not 1, AFTER you get x.
N=input('Please enter how many terms you would like to go out:')
x=input('Please enter the angle in radians:')
Est=x;
for k= 2:N
termK = (-1)^(k-1)*x^(2*k-1)/factorial(2*k-1);
Est = Est + termK;
fprintf('Term %d = %.6f, so now Est = %.6f\n', k, termK, Est);
end
fprintf('The final Estimated Value = %.6f\n', Est)
fprintf('Actual Value of sin(%.6f) = %0.6f\n', x, sin(x))
fprintf('Difference is %0.6f\n', Est-sin(x))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by