About the transpose for genmat
1 view (last 30 days)
Show older comments
Hello, genmat means Generalized matrix withtunable parameters, we can create such combinations using any of the arithmetic operators +, -, *, /, \, and ^. Link the example in matlab, a = realp('a',-1); b = realp('b',3);M = [1 a+b;0 a*b],when we do the transpose for M, it works; But if we set a = realp('a',eye(2)); b = realp('b',ones(2));M = [eye(2) a+b;ones(2) a*b], when we do the transpose for M: M.', it can not work, so ,how to do it if I want do the transpose for a control design block?
Thank you
2 Comments
Answers (0)
See Also
Categories
Find more on Discontinuities in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!