代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/486198/6538018

m 3-6.m

%例程3-6 产生Dirichlet函数波形 t=[-4*pi:0.1:4*pi]; x=diric(t,7); y=diric(t,6); subplot(2,1,1); plot(t,x); subplot(2,1,2); plot(t,y);
www.eeworm.com/read/485902/6549016

m rcos50.m

function h=rcos50(t); % % This function gives samples of a raised cosine % pulse shape with a rolloff factor of 50%. % % The sampling times are specified by the elements % of the vector "t".
www.eeworm.com/read/485392/6561192

m 3-6.m

%例程3-6 产生Dirichlet函数波形 t=[-4*pi:0.1:4*pi]; x=diric(t,7); y=diric(t,6); subplot(2,1,1); plot(t,x); subplot(2,1,2); plot(t,y);
www.eeworm.com/read/484949/6569293

c unwrap.c

/*求解卷绕后的相频响应 y为一维数组,长度为len;*/ void unwrap(y,len) int len; double y[]; { int i,k,j; double pi2,temp; pi2=8.0*atan(1.0); for(i=len-1;i>0;i--) { temp=y[i]-y[i-1]; temp=abs(temp); if
www.eeworm.com/read/484893/6575961

asv example_polars.asv

% example_polars.m % 绘制极坐标图形 t=linspace(0,2*pi); r=sin(2*t).
www.eeworm.com/read/484217/6581609

m zmn.m

function z=zmn(b,c,d,e,f,g) n=9; a=5*10^(-3); k=2*pi; w=3*10^8*2*pi; E=8.854*10^(-12); u=4*pi*10^(-7); for p=1:n for q=1:n if p==q s(p,q)=
www.eeworm.com/read/482203/6629400

m pin.m

function M=pin(Ap,dl); i=1; n=pi/dl(1); M(1)=n; while n
www.eeworm.com/read/481866/6631867

m liti5.m

x=linspace(0,2*pi,30); z=cos(x); y=sin(x); plot(x,z,:) hold on plot(x,y) zoom on
www.eeworm.com/read/480441/6664368

m p32conver.m

function y=p32conver(u) theta=2*pi/3; c=sqrt(2/3)*[ cos(u(4)) cos(u(4)-theta) cos(u(4)+theta) -sin(u(4)) -sin(u(4)-theta) -sin(u(4)+theta) ]; y=c*[u(1) u(2) u(3)]';
www.eeworm.com/read/480473/6664688

m liti5.m

x=linspace(0,2*pi,30); z=cos(x); y=sin(x); plot(x,z,:) hold on plot(x,y) zoom on