代码搜索:2PI

找到约 107 项符合「2PI」的源代码

代码结果 107
www.eeworm.com/read/15965/601079

c dtmf_enc.c

/* In general: ******************************************************* * DEQ: y(n) = 2*cos(2pi*f/fs)*y(n-1) - y(n-2) * * I.C.: y(-1) = 0
www.eeworm.com/read/481288/6647143

m ppplot.m

kz = 0; while kz ==0 k = menu('Phase Plane Options',... 'Extended Phase Plane',... 'Phase Plane mod(2pi)',... 'Exit Phase Plane Menu'); if k == 1 phierrn
www.eeworm.com/read/7455/120282

ewb 50hz陷波器.ewb

Electronics Workbench Circuit File Version: 5 Charset: ANSI Description: "50HZ陷波器" "陷波频率为:1/2Pi*R*C" EncryptionType: 1 UsingVectorGraphics: 0 /PPGIEBBBPFDGBNBNJAGEABCGKNAHEFFLLBAKAADGNFCH
www.eeworm.com/read/16247/665731

ewb 50hz陷波器.ewb

Electronics Workbench Circuit File Version: 5 Charset: ANSI Description: "50HZ陷波器" "陷波频率为:1/2Pi*R*C" EncryptionType: 1 UsingVectorGraphics: 0 /PPGIEBBBPFDGBNBNJAGEABCGKNAHEFFLLBAKAADGNFCH
www.eeworm.com/read/34198/1039732

ewb 50hz陷波器.ewb

Electronics Workbench Circuit File Version: 5 Charset: ANSI Description: "50HZ陷波器" "陷波频率为:1/2Pi*R*C" EncryptionType: 1 UsingVectorGraphics: 0 /PPGIEBBBPFDGBNBNJAGEABCGKNAHEFFLLBAKAADGNFCH
www.eeworm.com/read/164554/10103444

m fourdif.m

function [x,DM]=fourdif(N,m); % % [x, DM] = fourdif(N,m) computes the m'th derivative Fourier spectral % differentiation matrix on grid with N equispaced points in [0,2pi) % % Input: % N:
www.eeworm.com/read/310092/13658351

m ppplot.m

kz=0; while kz == 0 k = menu ( 'Phase Plane Options',... 'Extended Phase Plane',... 'Phase plane mod(2pi)',... 'Exit Phase Plane Menu'); if k== 1 phierrn = phierror/pi; p
www.eeworm.com/read/248077/4471132

m ex2_15.m

% EX2_15.M Compute the norm of sin(x) on the interval [0,2pi] % Compare symbolic and numerical result % (This script requires the Symbolic Math Toolbox) % Numerical value; call function sinsq to c
www.eeworm.com/read/475765/6778098

m ex2_18.m

% EX2_18.M Compute the norm of sin(x) on the interval [0,2pi] % Compare symbolic and numerical result % (This script requires the Symbolic Math Toolbox) % Numerical value; call function sinsq t
www.eeworm.com/read/402201/6297451

c sinxcosx.c

float float_sin(float a) { float sinResult = 0; if((a=PI2)) //判断a是否在0到2PI之间 { a = Trans_2PIRad(a); } sinResult = funFloatSin(a); return sinResult; } fl