Matrix of transfer functions
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
CONGBO BAO
am 11 Jul. 2021
Hi, Dear Davood;
I am facing the same problem.
Did you solve it?
Yours sincerely
Antworten (1)
Robert U
am 12 Jul. 2021
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 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!