我怎么能在matlab中写下以下方程式?它与VSC HVDC系统有关

时间:2017-07-14 04:02:12

标签: matlab controller

我想写出图中所示的等式?它与VSC HVDC系统有关。我如何在等式中写出1 / s。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

发布的方程式似乎描述了复频域中的两个控制器。正如本link所述,解释了" tf" Control System Toolbox的功能:使用有理表达式创建传递函数模型,首先将s指定为tf对象。

s = tf('s');

在理性表达式中使用s创建传递函数(例如)

H = s/(s^2 + 2*s + 10);