代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/461983/7213386
m program1_7.m
%MATLAB Program1_7
A=[0 1;-25 -4];
B=[1 1;0 1];
C1=[1 0];C2=[0 1];
D1=[0 0];D2=[0 0];
[num1,den1]=ss2tf(A,B,C1,D1,1)
G1=tf(num1,den1)
[num2,den2]=ss2tf(A,B,C1,D1,2)
G2=tf(num2,den2)
[num3,den
www.eeworm.com/read/461983/7213399
asv program1_7.asv
%MATLAB Program1_7
A=[0 1;-25 -4];
B=[1 1;0 1];
C1=[1 0];C2=[0 1];
D1=[0 0];D2=[0 0];
[num1,den1]=ss2tf(A,B,C1,D1,1)
G1=tf(num1,den1)
[num2,den2]=ss2tf(A,B,C1,D1,2)
G2=tf(num2,den2)
[num3,den
www.eeworm.com/read/461983/7213400
m ode_example2_2b_2.m
%MATLAB Program2_2b
%ode_example2_2b.m
function sx=ode_example2_2b_2(t,x)
sx(1,1)=x(2);
sx(2,1)=x(3)+1;
sx(3,1)=-2*x(1)-4*x(2)-3*x(3)+1;
www.eeworm.com/read/461983/7213406
m ode_example2_2a.m
%MATLAB Program2_2a
%ode_example2_2.m
function sx=ode_example2_2a(t,x)
sx(1,1)=x(2);
sx(2,1)=x(3);
sx(3,1)=-2*x(1)-4*x(2)-3*x(3);
www.eeworm.com/read/460020/7258780
m example5_1.m
%MATLAB PROGRAM example5_1.m
%
num=[3 1];
den=[2 5 11];
h=tf(num,den)
www.eeworm.com/read/460020/7258875
m example5_12.m
%MATLAB PROGRAM example5_12.m
%
A=[0 1 -1;-6 -11 6;-6 -11 5];
B=[0 0;0 1;1 0];
C=[1 0 0;0 1 0];
D=[2 0;0 2];
[z,p,k]=ss2zp(A,B,C,D,1)
[z,p,k]=ss2zp(A,B,C,D,2)
www.eeworm.com/read/458493/7295566
m install.m
% Installation instructions for The Numerical Methods with MATLAB Toolbox
%
% See also: Readme.m
% www.me.pdx.edu/~gerry/nmm
% www.prenhall.com/recktenwald
%
% Inst
www.eeworm.com/read/458488/7295991
m install.m
% Installation instructions for The Numerical Methods with MATLAB Toolbox
%
% See also: Readme.m
% www.me.pdx.edu/~gerry/nmm
% www.prenhall.com/recktenwald
%
% Inst
www.eeworm.com/read/456209/7353816
svn-base hold.sci.svn-base
function hold(a)
// hold - does nothing (Matlab compatibility)
endfunction
www.eeworm.com/read/456209/7353843
sci hold.sci
function hold(a)
// hold - does nothing (Matlab compatibility)
endfunction