代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/278132/10566242
m quanjuvalue.m
function QuanJuValue(speech)
%定义全局变量
global L1 L2 L3 L0 MA1 MA2 lspcb1 lspcb2 lspcb3 q_old rcAR1 rcAR2;
global b12 b30;
global T1 fraction1 T2 fraction2;
global Tr0 Tr1 Tr2 Tr3 Tr4;%Track 0-4
www.eeworm.com/read/352274/10567527
m rjlss.m
z=0;r=3/4;r1=1/2;
%Wn=10;s=0.1;
w=linspace(-2*pi,2*pi);
%t=R*C;
T=100;
num=[1 0 0];den=[1 -2*r*cos(z) r*r];
%[mag,phase]=dbode(num,den,T,w);
den=[1 -2*r1*cos(z) r1*r1];
%[mag1,phase1]=dbode(nu
www.eeworm.com/read/352274/10567776
m rjls1.m
z=pi/4;r=3/4;r1=1/2;
%Wn=10;s=0.1;
w=linspace(-2*pi,2*pi);
%t=R*C;
T=100;
num=[1 0 0];den=[1 -2*r*cos(z) r*r];
[mag,phase]=dbode(num,den,T,w);
den=[1 -2*r1*cos(z) r1*r1];
[mag1,phase1]=dbode(n
www.eeworm.com/read/160122/10569198
m sanjiao.m
symst w
ut=sym('Heaviside(t+0.5)-Heaviside(t-0.5)');
Fw=fourier(ut,t,w);
FFw=maple('convert',Fw,'piecewise');
FFFw=FFw*FFw
FFP=abs(FFFw)
ezplot(FFP,[-10*pi 10*pi])
axis([-10*pi 10*pi 0 1]);
www.eeworm.com/read/278099/10572151
c frand.c
/* +++Date last modified: 05-Jul-1997 */
/*
** FRAND.C - Public domain by Larry Hudson
*/
#include
#include
#include "snipmath.h"
#define TEN_PI 31.41592653589793
#def
www.eeworm.com/read/278048/10578507
m a_filter_design.m
% Design filter by specifying delay in units and
% looking at mag and phase response
% Good default values for fft_size = 128 and num_carriers = 32
delay_1 = 6; % 6
attenuation_1 = 0.35; %
www.eeworm.com/read/159946/10585051
c sine.c
/* sine.c - sine wavetable of length D */
#include
double sine(D, i)
int D, i;
{
double pi = 4 * atan(1.0);
return sin(2 * pi * i / D);
}
www.eeworm.com/read/277960/10590616
m exa4_12.m
% exa4-12_butterstopDF.m , for example 4-12
% using butterworth to design bandstop DF
clear all;
Wp=[0.4*pi,0.7*pi];
Ws=[0.2*pi,0.8*pi];
Ap=1;
As=30;
[N,wn]=buttord(Wp/pi,Ws/pi,Ap,As); %计算巴特沃
www.eeworm.com/read/277960/10590620
m exa4_8.m
% exa4-8_pulseDF for example4-8
% using Butterworth analog lowpass filter to design digital lowpass filter
%利用模拟Butterworth滤波器设计数字低通滤波器
%脉冲响应不变法
wp=0.2*pi;
ws=0.3*pi;
Rp=1;
As=15;
T=1;
%性能