MATLAB 求微分之后的赋值问题

2025-04-14 17:04:20
推荐回答(1个)
回答1:

使用subs函数。
例如:
subs(Xdbldot,'t',0)
subs(Xdot,'t',0)
或者
t=0;
subs(Xdbldot)
subs(Xdot)