mysine.m
来自「matlab code for new user to design any p」· M 代码 · 共 14 行
M
14 行
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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?