How to create a double entry table ?
19 ビュー (過去 30 日間)
古いコメントを表示
How to create a double entry table ?
Here below an example:
2 件のコメント
Jan
2022 年 10 月 18 日
Which details of this example meets the definition of what a "double entry table" is? This is a table, what what are "double entries"? Does "double" mean, that something occurs twice, or is it the type double?
採用された回答
Hiro Yoshino
2022 年 10 月 18 日
Is this something like this?:
B = table({'Michael';'Beverly';'Alice'},...
[64;69;67],...
[119;163;133],...
[122 80; 109 77; 117 75],...
'VariableNames',{'FirstName' 'Height' 'Weight' 'BloodPressure'},...
'RowNames',{'Garcia' 'Johnson' 'Wu'})
You can find some example if this is the one here: https://www.mathworks.com/help/matlab/matlab_prog/limitations-of-tables-and-timetables.html
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!