代码搜索:realization

找到约 607 项符合「realization」的源代码

代码结果 607
www.eeworm.com/read/203170/15364463

c canonical_realization_1.c

/* can.c - IIR filtering in canonical form */ double can(M, a, L, b, w, x) /* usage: y = can(M, a, L, b, w, x); */ double *a, *b, *w, x; /* \(w\) = internal state vec
www.eeworm.com/read/203170/15364529

c canonical_realization_2.c

/* can2.c - IIR filtering in canonical form */ double dot(); void delay(); double can2(M, a, L, b, w, x) /* usage: y = can2(M, a, L, b, w, x); */ double *a, *b, *w, x; int M, L; {
www.eeworm.com/read/203170/15364533

c canonical_realization_3.c

/* can3.c - IIR filtering in canonical form, emulating a DSP chip */ double can3(M, a, b, w, x) /* usage: y = can3(M, a, b, w, x); */ double *a, *b, *w, x; /* \(w\)
www.eeworm.com/read/408729/11375567

txt on the realization of the staircase algorithm java.txt

上楼梯算法的java实现 import java.io.*; class upstair{ public static void main(String argc[]){ int n=Integer.parseInt(argc[0]); int a[]=new int[n+1]; int count=0;
www.eeworm.com/read/203170/15364493

c direct_form_realization_1.c

/* dir.c - IIR filtering in direct form */ double dir(M, a, L, b, w, v, x) /* usage: y = dir(M, a, L, b, w, v, x); */ double *a, *b, *w, *v, x; /* \(v,w\) are internal state
www.eeworm.com/read/203170/15364514

c direct_form_realization_2.c

/* dir2.c - IIR filtering in direct form */ double dot(); void delay(); double dir2(M, a, L, b, w, v, x) /* usage: y = dir2(M, a, L, b, w, v, x); */ double *a, *b, *w, *v, x; int M, L; {
www.eeworm.com/read/203170/15364472

c circular-buffer_cascade_realization_1.c

/* ccas.c - circular buffer implementation of cascade realization */ double csos(); /* circular-buffer version of single SOS */ double ccas(K, A, B, W, P, x) int K; double *