Borrar filtros
Borrar filtros

Taylor series of sin(x) needs to be modified for cos(x) in a better way, please explain how to do this

1 visualización (últimos 30 días)
function [approx] = T_C(angle,counter)
approx=0;
radianangle= angle*pi/180;
polynum=1;
polynum=radianangle;
approx=approx+polynum;
while abs(counter/polynum)<1
n=n+1;
polynum=polynum*-1*anglerad*2/(2*n+1)/(2*n);
approx=approx+polynum;
end
end

Respuestas (1)

Akshat Dalal
Akshat Dalal el 14 de Sept. de 2023
Hi John,
I understand you want to find the value of sin(x) using Taylor series expansion. I believe your code should be modified as follows:
polynum=polynum*-1*(anglerad^2)/(2*(n+1))/(2*n);
You could modify the code accordingly for cos(x). You can find the both the Taylor series expansions here: https://en.wikipedia.org/wiki/Taylor_series

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by