How I can get number from a table?

9 次查看(过去 30 天)
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

采纳的回答

madhan ravi
madhan ravi 2020-6-28
编辑:madhan ravi 2020-6-28
  7 个评论
madhan ravi
madhan ravi 2020-6-28
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
Wow! madhan. I really appreciate your support. It works. You are very kind.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by