Transfer function: 1 ------- 5 s + 1 写成微分方程: 5y'(t)+y(t)=u(t) 向前差分: 5y(k+1)+(T-5)y(k)=Tu(k) T:Sample time 向后差分: (5+t)y(k)-Ty(k-1)=Tu(k) Matlab阶跃响应: G1=tf([1],[5 1]); step(G1) %连续传递函数阶跃响应曲线 hold on G2=c2d(G1,0.1,'zoh'); step(G2) %离散传递函数阶跃响应曲线 hold on
MATLAB的数据显示格式 虽然在MATLAB系统中数据的存储和计算都是双精度进行的,但MATLAB可以利用菜单或format命令来调整数据的显示格式.Format命令的格式和作用如下: l format|format short 5位定点表示 l format long 15位定点表示 l format short e 5位浮点表示 l format long e 15位浮点表示 l f
贝塞尔曲线绘图方法: %Program 3.7 Freehand Draw Program Using Bezier Splines %Click in Matlab figure window to locate first point, and click % three more times to specify 2 control points and the next % spline point. Continue with groups of 3 points to add mor