代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/247291/12667705

cpp 角度距离方向.cpp

#include #include #define PI 3.14159265357929 double d_h(double x) { int f; if(x
www.eeworm.com/read/333417/12683722

asv aaaaa.asv

clear clc T=128; f1=0.1; m1=0.2/T; t=1:T; s1=exp(j*2*pi.*(f1.*t+(m1/2)*t.^2)); ambifunb(s.');
www.eeworm.com/read/333417/12684028

m aaaaa.m

clear clc T=128; f1=0.1; m1=0.2/T; t=1:T; s=exp(j*2*pi.*(f1.*t+(m1/2)*t.^2)); ambifunb(s.');
www.eeworm.com/read/246998/12693780

m chap3_11f.m

function [y]=func(x1,x2,x3) for l1=1:1:3 gs1=-[(x1+pi/6-(l1-1)*pi/6)/(pi/12)]^2; u1(l1)=exp(gs1); end for l2=1:1:3 gs2=-[(x2+pi/6-(l2-1)*pi/6)/(pi/12)]^2; u2(l2)=exp(gs2); end
www.eeworm.com/read/145872/12698478

java app7_4.java

// app7_4, 圆形类CCircle class CCircle //定义类CCircle { double pi=3.14; // 将数据成员赋值初值
www.eeworm.com/read/246680/12712949

m ex0114.m

function x = ex0114(t,D) global D %D=1; t(find(t == 0)) = eps;%zuixiaozhengshu x = sin(pi*t/D)./(pi*t/D);
www.eeworm.com/read/145526/12716922

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/145526/12716932

m exa020502.m

%------------------------------------------------------------------------- % exa020502.m, for example 2.5.2 and fig 2.5.6, %------------------------------------------------------------------------
www.eeworm.com/read/145526/12716991

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/145494/12718154

m ex5_11.m

G=tf(1.5,[1,2,3]); t=0:0.1:2*pi; u=sin(t); y=lsim(G,u,t); plot(t,u,t,y) figure u=sin(2*t); y=lsim(G,u,t); plot(t,u,t,y)