Matrix of transfer functions
조회 수: 66 (최근 30일)
이전 댓글 표시
How do I define a matrix whose arrays are different transfer functions. I would like to do matrix multiplication and inversion later. I would like to avoid using symbolic definition of transfer functions.
댓글 수: 1
CONGBO BAO
2021년 7월 11일
Hi, Dear Davood;
I am facing the same problem.
Did you solve it?
Yours sincerely
답변 (1개)
Robert U
2021년 7월 12일
Hi Davood Raoofsheibani,
% define array
A = [tf([1],[1/(2*pi*24e3) 2/(2*pi*12e3) 1]), tf([1],[1/(2*pi*12e3) 2/(2*pi*8e3) 1]);...
tf([1],[1/(2*pi*6e3) 2/(2*pi*12e3) 1]), tf([1],[1/(2*pi*12e3) 2/(2*pi*12e3) 1])];
% use operations on array
A^2
s = tf('s');
A.*s
A^(-1)
Kind regards,
Robert
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Pie Charts에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!