How to display table values
15 ビュー (過去 30 日間)
古いコメントを表示
I am trying to get the command window to show the actual value of my table instead of saying [1x41 double].
Below is my working out:
A=(10:0.1:14);
M; %Array of Maximum values
I; %Array of Index of Maximum values
maxtheta = theta(I);
%%Add Table with A vs M vs I
T = table(A,M,maxtheta,'VariableNames',{'a value','max db value','corresponding angle'})
When i click run, this is what it is displaying:
T =
1×3 table
a value max db value corresponding angle
____________ _____________ ___________________
[1×41 double] [1×41 double] [1×41 double]
How can I get it to show the actual values?
0 件のコメント
採用された回答
Image Analyst
2021 年 4 月 29 日
Make them column vectors with (:)
T = table(A(:), M(:), maxtheta(:), 'VariableNames',{'a value','max db value','corresponding angle'})
その他の回答 (1 件)
giada
2024 年 7 月 10 日
Hi, how to solve if the A M and matheta variables would be matrix 2x41?
thank you
5 件のコメント
Walter Roberson
2024 年 7 月 11 日
You cannot get the default display of tables to expand nested tables.
table() objects are not primarily intended for display purposes. There is very little customization available for the display of table() objects.
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!