代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/206235/15298044

m ch411_1.m

x=0:0.01:4; f=exp(-(x-2).^2.*cos(pi*x)); g=4*cos(x-2); plot(x,f,x,g,'-.') grid on gtext('f(x)') gtext('g(x)') gtext('m1') gtext('m2')
www.eeworm.com/read/205502/15314765

m ex5_1.m

x=0:pi/100:2*pi; y=2*exp(-0.5*x).*cos(4*pi*x); plot(x,y)
www.eeworm.com/read/169775/5410445

c sincos.c

/* sincos.c - math routines */ /* Copyright 1992-1993 Wind River Systems, Inc. */ /* modification history -------------------- 01f,05feb93,jdi doc changes based on kdl review. 01e,02dec92,jdi doc
www.eeworm.com/read/475710/6775910

m gaussn.m

function g = gaussn(f0,n) % function gn = gaussn(f0,n) : generates the order n derivative of the % gaussian window, centered at frequency f0 % The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/475765/6777734

m clspec2.m

% CLSPEC2.M Plot the positive amplitude spectrum and the % Fourier series representation for the pulse train with % A=1, period T=2*pi, and pulse width tau=pi/2. n=1:10;
www.eeworm.com/read/475502/6790115

m dfirwin.m

function hwn = dfirwin(ty,n,fc,samp,fp,fs,wind,p1) % Impulse response for window-based design % This will be used to find and plot the spectrum (see fir_plot.m) % HN = firwhb(TY,N,FC,WIND,P1)
www.eeworm.com/read/474679/6804850

asv xinhao.asv

%x(n)+x(n-1)+x(n-2)+x(n-3)=v(n) clear Fs=1000; n=0:1/Fs:.3; delta=0;A1=5; omig=pi/3; e=delta+omig*j; x=A1*exp(e*n)
www.eeworm.com/read/473520/6845259

m liti1.m

x=linspace(0,2*pi,30); y=sin(x); z=cos(x); plot(x,y,'r',x,z,'go')
www.eeworm.com/read/295457/8160981

m viete.m

function y=viete(n) pi=1;a(1)=sqrt(2)/2; for i=1:n-1 a(i+1)=sqrt(0.5+(1/2)*a(i)); pi=pi*a(i); end; vpa(2/pi)
www.eeworm.com/read/194516/8191355

m gaussn.m

function g = gaussn(f0,n) % function gn = gaussn(f0,n) : generates the order n derivative of the % gaussian window, centered at frequency f0 % The wavelet gn is real, but it is its analytic form