From where do I insert the transpose operator for matrix operation ?

1 view (last 30 days)
To convert a row matrix into a coloumn matrix I need to perform x = x(transpose). But how to insert the TRANSPOSE operator ?

Accepted Answer

Ameer Hamza
Ameer Hamza on 22 Mar 2020
Edited: Ameer Hamza on 22 Mar 2020
In MATLAB, transpose is indicated by apostrophe symbol ('). See: https://www.mathworks.com/help/matlab/ref/transpose.html
x = x';

More Answers (1)

Sriram Tadavarty
Sriram Tadavarty on 22 Mar 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);
For more details, go through transpose.
Hope this helps.
Regards,
Sriram

Community Treasure Hunt

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

Start Hunting!