how to have A and A' show 3x2 column vector
1 回表示 (過去 30 日間)
古いコメントを表示
so for A = [1 2 3; 4 5 6]
I want A AND A' to BOTH display:
1 4
2 5
3 6
0 件のコメント
回答 (1 件)
Walter Roberson
2022 年 11 月 21 日
You will need to create a new class that is derived from double, and for the new class you will need to either change the vertcat() and horzcat() operators, or else the disp() or display() function; which of the methods you override depends upon whether you want the result of constructing A to be a 3 x 2 array (despite the array seemingly having been constructed as 2 x 3), or if instead you only need A to display as-if it is 3 x 2 .
参考
カテゴリ
Help Center および File Exchange で Construct and Work with Object Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!