how can i solve part 2 ... should i convert the statespace to tf?

조회 수: 1 (최근 30일)
Mohammad Adeeb
Mohammad Adeeb 2018년 3월 13일
댓글: Birdman 2018년 3월 13일
close all;
clear all;
clc;
m1=1;
m2=3;
k1=10;
k2=2;
b=0.5;
A=[0 1 0 0;-(k1+k2)/m1 -b/m1 k2/m1 b/m1;0 0 0 1; k2/m2 b/m2 -k2/m2 -b/m2];
B=[0;0;0;1/m2];
C=[1 0 0 0;0 0 1 0];
D=[0;0];
sys_ss=ss(A,B,C,D);
step(sys_ss);
[num,den]=ss2tf(A,B,C,D);

채택된 답변

Birdman
Birdman 2018년 3월 13일
Actually you do not need to do that since they will eventually give the same result but since the question wants you to do it, write the following code:
Gs(1)=tf(num(1,:),den);
Gs(2)=tf(num(2,:),den)
step(Gs)
and you will see that you get identical results.
  댓글 수: 4
Mohammad Adeeb
Mohammad Adeeb 2018년 3월 13일
ok .. thanx it's work
Birdman
Birdman 2018년 3월 13일
You are welcome.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by