Convert tf to struct

13 views (last 30 days)
João
João on 9 Jul 2016
Commented: Walter Roberson on 13 Jul 2022
How do I convert a 2x2 tf to 2x2 struct?

Answers (2)

Amanjeet Pani
Amanjeet Pani on 13 Jul 2022

Walter Roberson
Walter Roberson on 13 Jul 2022
G11 = tf([1 2], [3 4]);
G12 = tf([3 4], [5 6 7]);
G21 = tf([8], [9 10]);
G22 = tf([11 12 13], [14 15 16 17]);
G = [G11, G12; G21, G22]
G = From input 1 to output... s + 2 1: ------- 3 s + 4 8 2: -------- 9 s + 10 From input 2 to output... 3 s + 4 1: --------------- 5 s^2 + 6 s + 7 11 s^2 + 12 s + 13 2: --------------------------- 14 s^3 + 15 s^2 + 16 s + 17 Continuous-time transfer function.
S(1,1) = struct(G(1,1));
Warning: Calling STRUCT on an object prevents the object from hiding its implementation details and should thus be avoided. Use DISP or DISPLAY to see the visible public details of an object. See 'help struct' for more information.
S(1,2) = struct(G(1,2));
Warning: Calling STRUCT on an object prevents the object from hiding its implementation details and should thus be avoided. Use DISP or DISPLAY to see the visible public details of an object. See 'help struct' for more information.
S(2,1) = struct(G(2,1));
Warning: Calling STRUCT on an object prevents the object from hiding its implementation details and should thus be avoided. Use DISP or DISPLAY to see the visible public details of an object. See 'help struct' for more information.
S(2,2) = struct(G(2,2));
Warning: Calling STRUCT on an object prevents the object from hiding its implementation details and should thus be avoided. Use DISP or DISPLAY to see the visible public details of an object. See 'help struct' for more information.
S
S = 2×2 struct array with fields:
Numerator Denominator Variable IODelay Variable_ ioDelayMatrix InputDelay OutputDelay Ts TimeUnit InputName InputUnit InputGroup OutputName OutputUnit OutputGroup Notes UserData u y TimeUnit_ InputName_ InputUnit_ InputGroup_ OutputName_ OutputUnit_ OutputGroup_ Notes_ CrossValidation_ Name Name_ IOSize_ Version_ SamplingGrid Data_ SamplingGrid_
  1 Comment
Walter Roberson
Walter Roberson on 13 Jul 2022
Not sure what benefit this gives compared to just indexing the tf object.

Sign in to comment.

Categories

Find more on Structures in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!