State Space, Finding Characteristic equation
조회 수: 15 (최근 30일)
이전 댓글 표시
Having trouble converting into state space. I also need to use matlab to produce the characteristic equation. here is my code
syms ks cs
A = [0 1 0 0; (ks+2000)/30 (cs+5)/30 -ks/30 -cs/30; 0 0 0 1; -ks/500 -cs/500 ks/500 cs/500];
B = [0 0 ; 66.7 .167; 0 0; 0 0];
C = [-ks/500 -cs/500 ks/500 cs/500; -1 0 0 0; -1 0 1 0];
D = [ 0 0; 1 0 ;0 0];
sys = ss(A,B,C,D);
댓글 수: 0
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!