代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/166302/10024734

m bss_gbjz_ep_eeg_end.m

function main() %主程序 clear all; %------------------------常量初值--------------------- load eeg.txt load c07_0.dat; epsig=c07_0; hello=epsig/5; N=2000;%快拍数 hello2=hello.
www.eeworm.com/read/361569/10045128

c 1cpdv.c

#include "math.h" void cpdv(pr,pi,m,qr,qi,n,sr,si,k,rr,ri,l) int m,n,k,l; double pr[],pi[],qr[],qi[],sr[],si[],rr[],ri[]; { int i,j,mm,ll; double a,b,c,d,u,v; void cmul(doubl
www.eeworm.com/read/165898/10047198

m axis542.m

function axis542 x = 0:.025:pi/2; plot(x,tan(x),'-ro') axis([0 pi/2 0 5])
www.eeworm.com/read/165898/10047205

m comet531.m

function comet531 figure(1) t = 0:.01:2*pi; x = cos(2*t).*(cos(t).^2); y = sin(2*t).*(sin(t).^2); comet(x,y);
www.eeworm.com/read/165898/10047208

m errorbar531.m

function errorbar531 figure(1) x=[0:0.2:4*pi]; y=sin(x); e=[0:1/(length(x)-1):1]; errorbar(x,y,e)
www.eeworm.com/read/165898/10047252

m plotyy533.m

function plotyy533 x=0:0.01*pi:2*pi; y=sin(x); z=exp(x); plotyy(x,y,x,z,'plot','semilogy')
www.eeworm.com/read/165851/10049085

m program_04_1.m

% Program 4_1 % Generate the filter coefficients colordef black h1 = ones(1,5)/5; h2 = ones(1,14)/14;h3 = ones(1,200)/200; w = 0:pi/255:pi; % Compute the frequency responses H1 = freqz(h1, 1, w
www.eeworm.com/read/361297/10058866

m ex031200.m

n = -5:10; x = sin(pi*n/2); k = -100:100; w = (pi/100)*k; % frequency between -pi and +pi X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x % signal decomposition [xe,xo,m] = evenodd(x,n);
www.eeworm.com/read/165406/10063710

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/165406/10063718

m exa020502.m

%------------------------------------------------------------------------- % exa020502.m, for example 2.5.2 and fig 2.5.6, %------------------------------------------------------------------------