代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/203791/15351387
m period2.m
N=2000;
L=3000;
k=0:N-1;
f1=0.21; % frequency of signal 1
f2=0.22;
www.eeworm.com/read/203408/15359858
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/202967/15368730
m exa060702_2.m
%--------------------------------------------------------------------------
% exa060702_2 , for example 6.6.2 and 6.7.2;
% to test buttord.m and butter.m;
% to design a Butterworth Bandpass digital
www.eeworm.com/read/202967/15368734
m exa020502.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/202967/15368760
m exa030202.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/201668/15398958
asv ex2_1.asv
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/201668/15398959
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/201668/15398996
m ex5_8.m
t=0:0.01:2*pi;
x=exp(i*t);
y=[x;2*x;3*x]';
plot(y)
grid on; %加网格线
box on; %加坐标边框
axis equal %坐标轴采用等刻度
www.eeworm.com/read/201668/15399021
m ex5_15.m
subplot(2,2,1);
ezplot('x^2+y^2-9');axis equal
subplot(2,2,2);
ezplot('x^3+y^3-5*x*y+1/5')
subplot(2,2,3);
ezplot('cos(tan(pi*x))',[ 0,1])
subplot(2,2,4);
ezplot('8*cos(t)','4*sqrt(2)*sin(t)',[
www.eeworm.com/read/201668/15399030
m ex5_19.m
t=0:pi/20:2*pi;
[x,y,z]= cylinder(2+sin(t),30);
subplot(2,2,1);
surf(x,y,z);
subplot(2,2,2);
[x,y,z]=sphere;
surf(x,y,z);
subplot(2,1,2);
[x,y,z]=peaks(30);
surf(x,y,z);