代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/174371/9590399

m dg_pulse.m

function p=DG_pulse(segma2,t) p=-exp((-t.^2)/(2*segma2)).*(((t.^2)/segma2)-1)/(sqrt(2*pi*segma2)*segma2); %%--------
www.eeworm.com/read/368108/9711757

m circle.m

%circle.m clf; r=2; t=0:pi/100:2*pi; x=r*exp(i*t); plot(x,'r*'); axis('square')
www.eeworm.com/read/367926/9722573

m ex1_1.m

x=[0:0.5:360]*pi/180; plot(x,sin(x),x,cos(x));
www.eeworm.com/read/367926/9722613

m ex5_4.m

x=0:pi/100:2*pi; y1=0.2*exp(-0.5*x).*cos(4*pi*x); y2=2*exp(-0.5*x).*cos(pi*x); plotyy(x,y1,x,y2);
www.eeworm.com/read/367926/9722636

m ex3_4.m

x=input('请输入x的值:'); if x
www.eeworm.com/read/367926/9722673

m ex3_21.m

a=0;b=3*pi; n=1000; h=(b-a)/n; x=a; s=0; f0=exp(-0.5*x)*sin(x+pi/6); for i=1:n x=x+h; f1=exp(-0.5*x)*sin(x+pi/6); s=s+(f0+f1)*h/2; f0=f1; end s
www.eeworm.com/read/170747/9791831

cpp jtcsfs1.cpp

//--------------------------------------------------------------------------- #include #include #pragma hdrstop #include "jtcsfs1.h" #include "usb_AD\usbad1.h" //---------------
www.eeworm.com/read/415746/11055954

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/415531/11066437

m points2dnormalize.m

function Po = points2dnormalize(Pi,mustRemove) % POINTS2DNORMALIZE Normalize 2d points % % Normalize 2d points removing the last vector element. % % Params: % % Pi = Input points
www.eeworm.com/read/415088/11084303

m bohplot.m

[x,y] = meshgrid(-1:.1:1); z = (x.^2) + (2 .* (y.^2)) - (0.3 .* (cos(3 .* pi .* x))) - (0.4 .* (cos(4 .* pi .* y))) + 0.7; z = -z; surf(x,y,z)