필터 지우기
필터 지우기

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
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.
Second you need to read about the && operator

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by