Number of columns to be shown of a matrix saved in the workspace.
4 ビュー (過去 30 日間)
古いコメントを表示
How can I specify the number of columns to be shown in matrix saved in the workspace? For example, if the matrix has 14 columns, when I double click on it I want to see the 7 of them and the other 7 on another page? Is this possible? Right now, there are 29 columns fitted, which makes the cells look very small and I can't see their values.Thanks!
0 件のコメント
回答 (1 件)
Massimo Zanetti
2016 年 10 月 7 日
Assume your matrix C is nx14. To display them separately just save two other matrices as follows:
A = C(:,1:7);
B = C(:,18:end);
Now click on them on the workspace. :)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!