How to create a column table
古いコメントを表示
how to change the table so the number is in column straight down? I attach a picture on how it should be

vel=linspace(60,140,5);
time=[1:0.5:3];
table(time,vel,'VariableNames',{'Time','Velocity'})
ans =
1×2 table
Time Velocity
_____________________________ ______________________________
1 1.5 2 2.5 3 60 80 100 120 140
1 件のコメント
Stephen23
2021 年 2 月 8 日
Better:
time = 1:0.5:3;
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!