Clear Filters
Clear Filters

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

1 view (last 30 days)
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

Answers (1)

Akshat Dalal
Akshat Dalal on 14 Sep 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

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!