About the transpose for genmat
Afficher commentaires plus anciens
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
Réponses (0)
Catégories
En savoir plus sur SimEvents dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!