代码搜索: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/211973/15169046

m example1_10.m

t=0:pi/20:2*pi; plot(t,sin(t)); delete(gca);
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/205502/15314705

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/473520/6845246

m liti13.m

x=linspace(0,2*pi,30); y=sin(x); plot(x,y) zoom on
www.eeworm.com/read/473520/6845260

m liti27.m

fplot('abs(exp(-j*x*(0:9))*ones(10,1))',[0,2*pi])
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];
www.eeworm.com/read/294008/8257895

m example1_10.m

t=0:pi/20:2*pi; plot(t,sin(t)); delete(gca);