代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/212371/15157673
m untitled.m
t=0:0.01:5;
subplot(2,1,1)
y=square(2*pi*t);
plot(t,y);
subplot(2,1,2)
y=square(2*pi*t,80);
plot(t,y);
www.eeworm.com/read/211300/15183168
m sinc.m
function y=sinc(x)
% 函数 y=sinc(x)=sin(pi*x)./(pi*x)
% -----------------------
x = x + eps;
y = sin(pi*x) ./ (pi*x);
www.eeworm.com/read/210153/15205904
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/209621/15216370
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/471460/6894128
m sctm.m
function sctm = sctm
global sctm
a =cos(2*pi/3)+j*sin(2*pi/3);
sctm = [1 1 1; 1 a^2 a; 1 a a^2];