代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/305889/13757272

m example1_10.m

t=0:pi/20:2*pi; plot(t,sin(t)); delete(gca);
www.eeworm.com/read/304881/13784506

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/304061/13802276

txt 例1.64.txt

例1.64 >> x=0:pi/15:2*pi; >> y1=sin(x); y2=cos(x); >> plot(x,y1,'b:+',x,y2,'g-.*')
www.eeworm.com/read/304061/13802303

txt 例1.62.txt

例1.62 >> x=0:pi/15:2*pi; >> y1=sin(x); >> y2=cos(x); >> plot(x,y1,x,y2)
www.eeworm.com/read/303558/13812508

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/303512/13813984

m gain2h.m

% gain2h.m - gain of 2D array of non-identical linear antennas with Hallen currents % % Usage: [ge,gh,th] = gain2h(L,d,I,N,ph0) % [ge,gh,th] = gain2h(L,d,I,N) (equivalent to ph0=0)
www.eeworm.com/read/303498/13814360

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/303498/13814384

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');
www.eeworm.com/read/303498/13814434

m fesin.m

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

m sinc.m

function y=sinc(x) % 函数 y=sinc(x)=sin(pi*x)./(pi*x) % ----------------------- x = x + eps; y = sin(pi*x) ./ (pi*x);