extract a double array to multiple arrays
1 次查看(过去 30 天)
显示 更早的评论
I have a double array
aa = [1, 2, 3, 4, 11,12, 13, 14, 21, 22, 23, 24]
How can I get 3 arrays
b1 = [1, 11, 21]
b2 = [2, 12, 22]
b3 = [3, 13, 23]
b4 = [4, 14, 24]
Thanks!
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!