代码搜索:realization

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

代码结果 607
www.eeworm.com/read/176454/9497793

java arithmetic_realization.java

import java.util.Scanner; import java.io.*; class EightCode{ int e[][] = {{2,8,3},{1,0,4},{7,6,5}}; //初始状态 int father1 ,father2; int f; //函数值 EightCode former ; public EightCode(){
www.eeworm.com/read/359349/10153883

m iir_realization.m

clear,close all; n=0:100;x=u(n)-2*u(n-50); num=[7.0924 -11.8072 5.0763]; den=[1.0000 -0.3092 -0.7108]; [H,w]=freqz(num,den); h=impz(num,den,n); subplot(221) plot(w/pi,abs(H)) subplot
www.eeworm.com/read/445470/7595256

m cascade_realization.m

% cas.m - filtering by cascade of 2nd order sections % % [y, W] = cas(K, B, A, W, x) % % B = Kx3 numerator matrix % A = Kx3 denominator matrix % W = Kx3 state matrix % x = scalar input % y = scalar ou
www.eeworm.com/read/396752/8091851

m realization_matrix.m

D_bar0 = [2 0; 0 4] D_bar1 = [5 0; 0 12] D_bar2 = [2 0; 0 9] D_bar3 = [0 0; 0 2] N_bar0 = [-20 3; 2 1] N_bar1 = [-2 6; 1 3] N_bar2 = [4 0; 0 2] N_bar3 = [0 0; 0 0] Zero_block = [ 0 0; 0 0]
www.eeworm.com/read/203170/15364473

c cascade_realization.c

/* cas.c - IIR filtering in cascade of second-order sections */ double sos(); /* single second-order section */ double cas(K, A, B, W, x) int K; double **A, **B, *
www.eeworm.com/read/203170/15364492

m cascade_realization.m

% cas.m - filtering by cascade of 2nd order sections % % [y, W] = cas(K, B, A, W, x) % % B = Kx3 numerator matrix % A = Kx3 denominator matrix % W = Kx3 state matrix % x = scalar input % y = scalar ou
www.eeworm.com/read/359349/10154233

m iir_realization_integral.m

clear,close all; n=0:200; x=u(n)-u(n-50);%+1*cos(.4*pi*n).*(u(n-50)-u(n-100)).*exp(-0.2*(n-50)); %x=exp(-0.1*(n)); x=2*cos(.01*pi*n).*exp(-0.05*(n)); num=[1 -1.6097 0.6423]; den=[1 0 -1]; [H,w]