From where do I insert the transpose operator for matrix operation ?
1 回表示 (過去 30 日間)
古いコメントを表示
Shubham Bhattacharjee
2020 年 3 月 22 日
コメント済み: Shubham Bhattacharjee
2020 年 3 月 22 日
To convert a row matrix into a coloumn matrix I need to perform x = x(transpose). But how to insert the TRANSPOSE operator ?
0 件のコメント
採用された回答
Ameer Hamza
2020 年 3 月 22 日
編集済み: Ameer Hamza
2020 年 3 月 22 日
In MATLAB, transpose is indicated by apostrophe symbol ('). See: https://www.mathworks.com/help/matlab/ref/transpose.html
x = x';
その他の回答 (1 件)
Sriram Tadavarty
2020 年 3 月 22 日
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
参考
カテゴリ
Help Center および File Exchange で String についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!