Feeds
已回答
Matlab code for Maclaurin series expansion using cos(x) =1 and iterating adding a term at a time until I have an estimate for Cos(pi/3)?
syms x myfun=cos(x); x0=0; N=6; y0=subs(myfun,x0); y=y0 forn=1:N derivative=diff(myfun,n); y=((x-xx0)^n/factorial(n)*...
Matlab code for Maclaurin series expansion using cos(x) =1 and iterating adding a term at a time until I have an estimate for Cos(pi/3)?
syms x myfun=cos(x); x0=0; N=6; y0=subs(myfun,x0); y=y0 forn=1:N derivative=diff(myfun,n); y=((x-xx0)^n/factorial(n)*...
1 year 前 | 0
