代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/315751/13536919
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/314196/13571831
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/313963/13577671
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/313956/13577969
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/312587/13608652
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/308602/13699019
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/308602/13699043
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/306478/13744557
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));