matlab 的 linearSystemAnalyzer 函数图像显示不出来怎么解决
MATLAB2021b
%motor parameter
J = 0.01;
Dm = 0.1;
Kb = 0.01;
R = 1;
L = 0.5;
%motor tf function
s = tf('s');
P_motor = Kb/((Js+Dm)(L*s+R)+Kb^2);
%求系统P_motor的阶跃响应,时间为0到5秒,步长0.1s
linearSystemAnalyzer('step',P_motor,0:0.1:5);