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

 Respuesta aceptada

VBBV
VBBV el 3 de Feb. de 2021
vel=linspace(60,140,5);
time=[1:0.5:3];
table(time.',vel.','VariableNames',{'Time','Velocity'})
Use transpose .' operator

2 comentarios

Felvie Valerie Leong
Felvie Valerie Leong el 7 de Feb. de 2021
Thank you so much!
Stephen23
Stephen23 el 8 de Feb. de 2021
Editada: Stephen23 el 8 de Feb. de 2021
Using the colon operator is more robust than using transpose.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 3 de Feb. de 2021

Editada:

el 8 de Feb. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by