代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/257588/11920211

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/154760/11928791

m firhb.m

function [hwn,hw,qw] = firhb(ty,a,samp,fp,fs,wind,p1) % FIRHB Halfband FIR filter design. % % [HW,HWN,QW] = FIRHB(TY,A,SF,fp,fs,WIN,P1) Halfband FIR filter % TY = 'lp', 'bp', 'bs', or 'hp', SF
www.eeworm.com/read/154760/11928938

m firwind.m

function [hwn,hw,qw] = firwind(ty,a,samp,fp,fs,wind,p1) % FIRWIND FIR filter design with windows. % % [HW,HWN,QW] = firwind(TY,A,SF,FP,FS,WIND,P1) % FIR filter design using windows. % TY = 'lp',
www.eeworm.com/read/257078/11950773

m e0803.m

clear; t=-2*pi:0.01:2*pi; y=sin(t); x=cos(t); plot3(t,x,y)
www.eeworm.com/read/257078/11951543

m e0312.m

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

m state.m

function xdot = state(t,x); % returns the state derivatives A = [0 1 0; 0 0 1; -6 -11 -6]; B=[1; 1; 1]; xdot = A*x'+ B*sin(2*pi*t); %xdot = A*x';
www.eeworm.com/read/342926/11991038

cpp 1491.cpp

#include #include #include int play(int a1,int a2) { int t; if (a1
www.eeworm.com/read/153239/12050060

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/341680/12073027

m examp5_7.m

syms t w; syms a potitive f=1/(t^2+a^2); F=fourier(f,t,w) syms t w; syms a positive f=pi*exp(-a*abs(w))/a; ifourier(f) ifourier(F)
www.eeworm.com/read/341680/12073330

m examp3_37.m

syms t; syms a positive; x=a*cos(t); y=a*sin(t); z=a*t; I=int(z^2/(x^2+y^2)*sqrt(diff(x,t)^2+diff(y,t)^2+diff(z,t)^2),t,0,2*pi)