How I can get number from a table?

11 visualizaciones (últimos 30 días)
John Jairo Páez Rodriguez
John Jairo Páez Rodriguez el 28 de Jun. de 2020
Comentada: John Jairo Páez Rodriguez el 28 de Jun. de 2020
Hi guys!... My question. I have a large table. The values are similar to qq. I need to get the numbers 2,3,4,5,6. I have tried different ways but nothing work! Can anyone give support. Thanks...!
qq =
table
Movimientos
___________
2 3 4 5 6

Respuesta aceptada

madhan ravi
madhan ravi el 28 de Jun. de 2020
Editada: madhan ravi el 28 de Jun. de 2020
  7 comentarios
madhan ravi
madhan ravi el 28 de Jun. de 2020
qq = table;
Movimientos = 2:6
qq = table(Movimientos)
Movimientos =
2 3 4 5 6
qq =
table
Movimientos
_____________________
2 3 4 5 6
bb = qq.Movimientos
bb =
2 3 4 5 6
bb(1)
ans =
2
John Jairo Páez Rodriguez
John Jairo Páez Rodriguez el 28 de Jun. de 2020
Wow! madhan. I really appreciate your support. It works. You are very kind.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by