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
0 个评论
采纳的回答
madhan ravi
2020-6-28
编辑:madhan ravi
2020-6-28
qq(all(ismember(qq{:,:},2:6),2),:) % ?
7 个评论
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
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!