代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/283489/9017560
m exa100800_corrcoef.m
%------------------------------------------------------------------------
% exa100800_corrcoef.m,
% to test corrcoef.m ;
%------------------------------------------------------------------------
www.eeworm.com/read/283489/9017572
c mdefir1.c
#include
#include
#include
#include "msp.h"
void mdefir1(int l,int iband,float fl,float fh,float fs,int iwindow,
float b[],float w[],int *ierror)
{
/*-------------
www.eeworm.com/read/426487/9017627
m firhighpass.m
fb=5000;fc=4800;fs=40000;
wb=2*pi*fb/fs;
wc=2*pi*fc/fs;
deltaw=(wb-wc)/(2*pi);
N0=ceil((100-7.95)/(14.36*deltaw))+1;
N=N0+mod(N0+1,2)
beta=0.1102*(100-8.7);
[b,a]=fir1(N-1,wc/pi,'high',kaiser(N
www.eeworm.com/read/426487/9017634
m firlowpass.m
fb=1000;fc=1200;fs=44000;
wb=2*pi*fb/fs;
wc=2*pi*fc/fs;
deltaw=(wc-wb)/(2*pi);
N0=ceil((100-7.95)/(14.36*deltaw))+1;
N=N0+mod(N0+1,2);
beta=0.1102*(100-8.7);
[b,a]=fir1(N-1,wb/pi,'low',kaiser(N
www.eeworm.com/read/426487/9017640
asv firbandpass.asv
fb1=1200;
fb2=3000;
fc1=1000;
fc2=3200;
fs=00;
wb1=2*pi*fb1/fs;
wc1=2*pi*fc1/fs;
wb2=2*pi*fb2/fs;
wc2=2*pi*fc2/fs;
deltaw=(wc2-wb2)/(2*pi);
N0=ceil((100-7.95)/(14.36*deltaw))+1;
N=N0+mod(N
www.eeworm.com/read/426487/9017642
asv firhighpass.asv
fb=5000;fc=4800;fs=20000;
wb=2*pi*fb/fs;
wc=2*pi*fc/fs;
deltaw=(wb-wc)/(2*pi);
N0=ceil((100-7.95)/(14.36*deltaw))+1;
N=N0+mod(N0+1,2)
beta=0.1102*(100-8.7);
[b,a]=fir1(N-1,wc/pi,'high',kaiser(N
www.eeworm.com/read/426487/9017646
m firbandpass.m
fb1=1200;
fb2=3000;
fc1=1000;
fc2=3200;
fs=18000;
wb1=2*pi*fb1/fs;
wc1=2*pi*fc1/fs;
wb2=2*pi*fb2/fs;
wc2=2*pi*fc2/fs;
deltaw=(wc2-wb2)/(2*pi);
N0=ceil((100-7.95)/(14.36*deltaw))+1;
N=N0+mo
www.eeworm.com/read/382584/9020162
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/382395/9032086
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/382372/9032724
m fplotjb.m
clear
clc
subplot(2,2,1), fplot('humps',[0 1])
subplot(2,2,2), fplot('abs(exp(-j*x*(0:9))*ones(10,1))',[0 2*pi])
subplot(2,2,3), fplot('[tan(x),sin(x),cos(x)]',2*pi*[-1 1 -1 1])
subplot(2,2,4), f