how get it?
显示 更早的评论
a=magic(5)
b=[1 3 2 4 5]
i want to get:
in 1 column i want to 1 element
in 2 column i want to 3 element
in 3 column i want to 2 element
in 4 column i want to 4 element
in 5 column i want to 5 element
ans:
17 6 7 21 9
采纳的回答
更多回答(1 个)
a = magic(5)
b = [1 3 2 4 5]
v = arrayfun(@(i)a(b(i),i),1:size(a,2))
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!