代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/156267/11815291
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/156263/11815380
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/155795/11847744
m cq2.m
t=0:pi/50:4*pi;
y0=exp(-t/3);
y=exp(-t/3).*sin(3*t);
plot(t,y,'-r',t,y0,':b',t,-y0,':b')
grid
www.eeworm.com/read/155795/11847800
m a1.m
for i=1:15
x(i)=i*pi/36
y(i)=(x(i)/(2*pi))*20e-3/8e-7
end
www.eeworm.com/read/344812/11858422
m n.m
function [n]=mian(x)
global t;
t=x
if ((t>=0)&(t=pi/4)&(t=pi/2)&(t=pi)&
www.eeworm.com/read/154760/11929628
m leak_test.m
N=30;
n=0:(N-1);
w=pi/5;
x=sin(w*n);
X=fft(x,N);
stem(n,abs(X));
www.eeworm.com/read/257078/11951157
m e0607.m
x=0:0.01:pi/4;y1=sin(x);y2=tan(x);
plot(x,x) ;hold on;plot(x,y1,'r --') ;hold on;plot(x,y2, 'g --')
www.eeworm.com/read/257078/11951227
m e0642.m
n=10;dt=2*pi/n;t=0:dt:2*pi;
x=sin(t);y=cos(t);fill3(t,x,y,'c');