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

2 次查看(过去 30 天)
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

回答(1 个)

Akshat Dalal
Akshat Dalal 2023-9-14
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

类别

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