cl2ordf.m

来自「Programs for the book Advanced Engineeri」· M 代码 · 共 11 行

M
11
字号
function x_prime = cl2ordf(t,x,flag,A)
% CALL: x_prime = cl2ordf(t,x,flag,A)     ;  Function to define the system   
%    x_prime = A*x at each point x(t);   A is the system matrix
%    Flag is a dummy variable in this case
x_prime=A*x;
%
% Test case with CL2ORD.M for Example 5.10
% x_prime(1)=   x(1) + x(2);
% x_prime(2)= 4*x(1) + x(2) ;

		

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?