代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/357171/10214120

m 6-7.m

theta = 2*pi*rand(1,100); rose(theta) title '极坐标系下的直方图'
www.eeworm.com/read/356874/10219735

c pizza.c

/* pizza.c -- uses defined constants in a pizza context */ #include #define PI 3.14159 int main(void) { float area, circum, radius; printf("What is the radius of your pizza?\
www.eeworm.com/read/356723/10222037

m test.m

clear all factor = 4. * pi *5.; theta = 0:.1:90;; theta = theta .* (pi/180); f = sqrt((1. + 1 + 2.0 .* cos(pi+factor .* sin(theta)))); polar(theta,f,'k'); xlabel ('Normalized range R/Ro')
www.eeworm.com/read/356723/10222112

m fig10_5.m

clear all eps = 0.0000001; beta = -pi : pi / 10791 : pi; var = sin(beta); %var = -1.:0.00101:1.; num = sin((8. * 2. * pi * 0.5) .* var); if(abs(num)
www.eeworm.com/read/356723/10222133

m fig1_31.m

a=-2*pi:0.01:2*pi; %angle=sin(a); y=sinc(a).^2; ymod=10.*log10(y); plot(a,ymod,'k'); grid xlabel('Aangle - radians'); ylabel('Normalized antenna pattern -dB');
www.eeworm.com/read/356652/10223439

m minimax_modulated.m

%************************** psi角方程 ********** % minimax filter %经过调制的 静止基座 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear; clc; maxcount=60*10; Ts=1; f1=fopen('zhuanjiao.txt
www.eeworm.com/read/356652/10223460

m modulated10_1.m

%************************** psi角方程 ********** % kalman filter % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear; clc; maxcount=60*8; Ts=1; f1=fopen('zhuanjiao.txt'); s1=fsca
www.eeworm.com/read/356652/10223474

m kalman_unmodulat_circlemovement.m

%************************************ % copyright by Gao,YN % minimax filter algorithm % kalman filter 比较结果 % 未经调制的 圆周运动 % 相当于minimax_modulated_circle3 并且这里的结果不正确 %%%%%%%%%%%%%%%%%%%%%%
www.eeworm.com/read/356651/10223491

m h_attitudematrix1017.m

function h_attitudematrix1017() 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); %%%%% %%采用姿态
www.eeworm.com/read/356651/10223494

m datafilter.m

%%%%% %data filtering Fs=100; t=[0:Fs]/Fs; s=10+sin(2*pi*t*5)+sin(2*pi*t*10); figure; plot(s); [b,a]=ellip(8,0.01,40,6/Fs); [h,w]=freqz(b,a,512*10); figure; plot(w*Fs/(2*pi),abs(h));