Using a for loop to compute a Taylor series of sine?

I understand while loops pretty well, but for loops always seem to throw me off. Can someone please help me? Thanks.

댓글 수: 2

Please make an attempt and post your code, and then ask specific questions about it. Then we can comment on it and make suggestions.
I would but I honestly have no clue where to begin. I understand how to ask for the input statements and make the fprintf statements, but that is all. I'm entirely lost.

댓글을 달려면 로그인하십시오.

 채택된 답변

Stalin Samuel
Stalin Samuel 2015년 10월 8일
%%sample code
prompt = 'Enter angle value between 0 to 2pi? ';
x = input(prompt)
prompt = 'Enter the no of terms? ';
N = input(prompt)
ty = 0;
for i = 1:N
ty = ty +((-1)^(i))*((x^(2*i+1))/(factorial(2*i+1)));%your calculations
end
fprintf(['actual value ' num2str(ty)]) %display the results

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2015년 10월 8일

댓글:

2021년 1월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by