How do I make this function check error tolerance and the max number of iterations?
1 次查看(过去 30 天)
显示 更早的评论
This is the code I have so far
function [y,N] = sine_taylorN(x,es)
% This function evaluates the Taylor's series (Maclaurin's
% series) of the sine function evaluated at x and determines the number of
% terms required for convergence based on relative error.
% Inputs/Output:
% x = scalar value to be evaluated at
% es = stopping criterion requited for relative error in %
% N = number of terms required in the series for convergence
% to relative error accuracy of es
% y = approximate value of sine(x) by Maclaurin's series
y = 0; er = 100; k = 0; % Initializations
yexact = sin(x);
while er >= es
k = k +1;
y = y + (-1)^(k+1)*x^(2*k-1)/factorial(2*k-1);
er = abs((yexact-y)/yexact)*100; % relative error in percentage
end
N = k;
1 个评论
Walter Roberson
2016-9-8
First you need to define what the maximum number of iterations is, and what the behavior is to be if the maximum number is exceeded.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!