How to create a column table

8 views (last 30 days)
Felvie Valerie Leong
Felvie Valerie Leong on 3 Feb 2021
Edited: Stephen23 on 8 Feb 2021
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

Accepted Answer

VBBV
VBBV on 3 Feb 2021
vel=linspace(60,140,5);
time=[1:0.5:3];
table(time.',vel.','VariableNames',{'Time','Velocity'})
Use transpose .' operator
  2 Comments
Stephen23
Stephen23 on 8 Feb 2021
Edited: Stephen23 on 8 Feb 2021
Using the colon operator is more robust than using transpose.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!