필터 지우기
필터 지우기

MATLAB HELP to write a function.

조회 수: 3 (최근 30일)
Brandon
Brandon 2014년 9월 21일
편집: Rick Rosson 2014년 9월 21일
Hello, I have this problem as a practice question for a class. I am new to MATLAB, and I have no idea how to even start, can someone please help me? thanks
The Maclaurin series expansion for cos(x) is: cosx = 1 - x^2/2! + x^4/4! - x^6/6! + ...... Starting with the simplest version, cosx = 1, add terms one at a time to estimate cos(pi/4). After each new term is added, compute the true and approximate percent relative errors. Add terms until the absolute value of the approximate error estimate falls below and error criterion conforming to two significant figures.

답변 (2개)

Image Analyst
Image Analyst 2014년 9월 21일
Maybe try a for loop
theSum = 1;
for k = 2 : 2 : 1000
theSum = theSum - (-1)^k * ........ % See if you can complete the lines.
theError = theSum - cos(...........
if theError < .............
% some code......
end
end

Rick Rosson
Rick Rosson 2014년 9월 21일
편집: Rick Rosson 2014년 9월 21일
Here's a start:
x = pi/4;
ideal = cos(x);
approx = 1;
k = 0;
while ( abs(approx - ideal) > ... )
k = k + 2;
approx = approx + ...
...
...
end

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by