matlab 的 linearSystemAnalyzer 函数图像显示不出来怎么解决

问题遇到的现象和发生背景

matlab 的 linearSystemAnalyzer 函数图像显示不出来怎么解决

操作环境、软件版本等信息

MATLAB2021b

img

%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);