フィルターのクリア

differential equation solution for control system

3 ビュー (過去 30 日間)
ali akyuz
ali akyuz 2020 年 5 月 15 日
コメント済み: Rena Berman 2020 年 6 月 1 日
This is my equation
c(t) is output and r(t) input
I want find ;
1) transfer function [C(s)/R(s)]
2) partial-fraction expansion of [C(s)/R(s)
3) the output c(t) and plot step responce system
I am trying to learn matlab for my project but i didnt solving problems.I will be happy if you help
  1 件のコメント
Rena Berman
Rena Berman 2020 年 6 月 1 日
(Answers Dev) Restored edit

サインインしてコメントする。

回答 (1 件)

William Alberg
William Alberg 2020 年 5 月 15 日
The transfer function can be inserted into matlab the following way:
% make transferfunction
b = 1;
a = [1 5 6 10];
G = tf(b,a);
For partial-fraction expansion, you can use the function "residue". See: https://se.mathworks.com/help/matlab/ref/residue.html
[r,p,k] = residue(b,a);
The step response can be found by using the command "step"
figure;
step(G)

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by