Professor Diomar Cesar Lobao

Universidade Federal Fluminense-Volta Redonda, RJ, Brasil

Diomar Cesar


Dept. Ciências Exatas - Exact Science Dept.

Search

mysine.m

function [x]=mysine(theta,nterms)
%[x]=mysine(theta,nterms)  returns the sine of 'theta' (radians) evaluated
%                 using 'n' (terms) of a McLaurin series
x=theta;
if nterms>1
   sig=1;
   for i=2:nterms
      sig=-1*sig;
      term=theta^(2*i-1)/factorl(2*i-1);
      x=x+sig*term;
   end
end
Skip to content