代码搜索结果
找到约 10,000 项符合
Raspberry Pi 的代码
例1-1.m
y2=2*cos(0.5*pi)/(1+sqrt(3))
例9-19 .m
t=0:0.01:3
y=square(2*pi*t)
plot(t,y)
例2-61.m
>> fplot('cos(x)',[0 2*pi]);
>> title('fplot of cos(x)')
ex5_2.m
t=0:0.1:2*pi;
x=t.*sin(3*t);
y=t.*sin(t).*sin(t);
plot(x,y);
ex5_9.m
fplot('cos(tan(pi*x))',[ 0,1],1e-4)
05-20.txt
>> F = @(x,y)y*sin(x)+x*cos(y);
>> Q = dblquad(F,pi,2*pi,0,pi)
05-12.txt
>> fh = @(x,y)y*sin(x)+x*cos(y);
>> fh(pi,2*pi)
08-07.txt
>> f=sym('x+sin(x)')
>> subs(f,pi/4),subs(f,pi/2)
y.m
function y(x)
y=x*sin(10*pi*x)+2;
ex5_2.m
t=0:0.1:2*pi;
x=t.*sin(3*t);
y=t.*sin(t).*sin(t);
plot(x,y);