代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/323189/13347677
m figure0504.m
x=0:1/100:2*pi;
y=sin(x);
plot(x,y)
line([0,2*pi],[0,0])
axis([0 2*pi -2 2])
www.eeworm.com/read/323181/13347880
m figure0417.m
syms x y z s t
x='exp(-s)*cos(t)';
y='exp(-s)*sin(t)';
z='t';
ezmesh(x,y,z,[0,8,0,4*pi])
www.eeworm.com/read/321972/13391552
m test_ezplot.m
ezplot('sin(x)/x',[-4*pi 4*pi]);
title('Plot of sin x / x');
grid on;
www.eeworm.com/read/321160/13411486
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));
www.eeworm.com/read/321050/13412785
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));
www.eeworm.com/read/319404/13452437
m ex2302.m
%例23-2 简单画线函数line
x=0:0.4*pi:2*pi;
y=sin(x);
line(x,y) %如图23-3