代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/356651/10223495
m h_anglerate1017.m
function h_anglerate()
clc;
%clear;
%Ts, maxcount, ae, an au, p_m, r_m, y_m, fp, fr, fy,
%nav_data_m_fuc(0.01,2*600, 0,0,0, 0,0,0, 0,0,0 );
%nav_data_s_fuc(1,1,1);
%%%%%%%%%%%
%tr
www.eeworm.com/read/356651/10223498
m h_anglerate1017_1204.m
%function h_anglerate()
clc;
%clear;
%Ts, maxcount, ae, an au, p_m, r_m, y_m, fp, fr, fy,
%nav_data_m_fuc(0.01,2*600, 0,0,0, 0,0,0, 0,0,0 );
%nav_data_s_fuc(1,1,1);
%%%%%%%%%%%
%t
www.eeworm.com/read/356650/10223510
m alligment.m
%*********************************************************************************
%***************************** 仿真条件设置 ************************************
%*************************************
www.eeworm.com/read/356649/10223520
m dfttest.m
n=0:1/3000:1; d=0.1*sin(2500*pi*n);
subplot(311)
%q=length(t);
plot(n,d);
%axis([0,t(q),-0.3,0.3]);
title('zhengxuan信号源曲线图');
%X=dft(d,1000);
%magX=abs(X(1:551));
%subplot(312);
k=0:99;
w=
www.eeworm.com/read/356649/10223534
m notch1.m
t =0:1/500:4;
d = 0.1*sin(2*pi*t);
subplot(331)
q=length(t);
plot(t,d);
axis([0,t(q),-0.3,0.3]);
title('噪声源信号曲线图');
d=d';
rnd1 = normrnd(0,0.051,[q 1]);
subplot(332)
plot(t,rnd1);
axis
www.eeworm.com/read/356649/10223535
m notch.m
% t =0:1/100:20.47;d = 0.1*cos(pi/2*t);%(zhengchunyuande)
%t =0:1:299; d = 0.1*cos(pi*0.5*t);
t=0:1/3000:1;
d=0.1*cos(0+cos(2500*pi*t));
%t =0:1:10; d = 0.1*cos(pi*0.5*t);
subplot
www.eeworm.com/read/356649/10223537
m pinlvxiangying.m
b=[1,-2*cos(pi*0.5),1];
a=[1,-2*(1-0.021)*cos(pi*0.5),1-2*0.021];
[H,w]=freqz(b,a,100);
magh=abs(H);
subplot(2,1,1);
plot(w/pi,magh);
grid;
xlabel('频率单位pi');
ylabel('幅度');
title('幅度响应');
pha
www.eeworm.com/read/356643/10223574
txt 画箭头.txt
cls
clc
clear
clf
[X,Y]=meshgrid(-pi/2:0.1:pi/2,-pi:0.2:pi)
Z=abs(sin(Y)*cos(X));
[DX,DY]=gradient(Z,.1,0.2);
contour(Z);
hold on;
quiver(DX,DY);
hold off;