clprojf.m

来自「Advanced Engineering Mathematics using M」· M 代码 · 共 17 行

M
17
字号
function xdot = clprojf(t,x) % CALL: xdot = clprojf(t,x) to define equations of motion %   with drag for Example 6.10%  x''=-drag*v*x'     x1=x, xdot1=x'=x3  xdot3=x''%  y''=-drag*v*y'-g   x2=y, xdot2=y'=x4  xdot4=y''% OUTPUT: xdot is column matrix of solutions for time point tglobal drag gV=sqrt(x(3)^2 + x(4)^2);  xdot(1)=x(3);                 % represents x'xdot(2)=x(4);                 % represents y'xdot(3)=-drag*V*x(3);         % represents x''xdot(4)=-drag*V*x(4)-g;       % represents y''%%  Modify the definition of xdot to change the system%   equations

⌨️ 快捷键说明

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