代码搜索:continuous

找到约 2,697 项符合「continuous」的源代码

代码结果 2,697
www.eeworm.com/read/101557/15826575

m c2dt.m

function [PHI,GAMMA,H,J] = c2dt(A,B,C,T,lambda) %C2DT Conversion of continuous state space models to discrete % models with pure time delay in the inputs. % [Ad,Bd,Cd,Dd] = C2DT(A,B,C,T,lamb
www.eeworm.com/read/138799/13211308

jcsh aesscript.jcsh

# # Package: AesJcop # Filename: aesscript.jcsh # Scriptname: aesscript # Date: 24.09.2003 18:53:35 # # continue with script even in case of errors /mode continuous=${CONTINUOUS_MODE}
www.eeworm.com/read/385151/8817089

c top10_fixcyc.c

/*""FILE COMMENT""***************************************************** * M32R C Programming Rev. 1.00 * < Sample Program for TOP10 continuous output(fixed cycle) mode > * * Copyright (c) 20
www.eeworm.com/read/281682/9141600

xml test3.xml

www.eeworm.com/read/281682/9141603

xml test.xml

www.eeworm.com/read/281682/9141606

xml test4.xml

www.eeworm.com/read/375224/9367997

m hybridmodel_script.m

figure plot(tout,yout(:,1),'r*',tout,yout(:,2),'b^',tout,yout(:,3),'kp') hold plot(tout,yout(:,1),'r',tout,yout(:,2),'b',tout,yout(:,3),'k') grid axis([0 2.5 -1 2]); legend('Continuous','Ts=0.7'
www.eeworm.com/read/362213/10012563

m contfft.m

function [X,w] = contfft(x,T); % CONTFFT [X,w] = contfft(x,T) % % Computes the Fourier transform of a continuous time signal % using the FFT. The input is the sampled continuous % time signa
www.eeworm.com/read/362213/10012727

m ex13_9.m

% Example 13.9 % % Discretization of a Continuous System % kf = .1; m=1; A = [0 1;0 -kf/m]; B = [0; 1/m]; C = [1 0]; T = 0.1; format long % to show more resolution [Ad,Bd] = c2d(A,B,T) fo