From where do I insert the transpose operator for matrix operation ?
Mostrar comentarios más antiguos
To convert a row matrix into a coloumn matrix I need to perform x = x(transpose). But how to insert the TRANSPOSE operator ?
Respuesta aceptada
Más respuestas (1)
Sriram Tadavarty
el 22 de Mzo. de 2020
Hi Shubham,
You can directly use (') operator
% For example
x = rand(3,5);
xTranspose = x'; % size will be 5 x 3
% OR through transpose function
xTrans = transpose(x);
Hope this helps.
Regards,
Sriram
1 comentario
Shubham Bhattacharjee
el 22 de Mzo. de 2020
Categorías
Más información sobre Resizing and Reshaping Matrices en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!