Select only some Index in matrix
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have two variables:
whos var1 var2
Name Size
var1 331x666x31
var2 11x1
Where:
var2 = [ 3 5 6 7 8 9 10 11 12 15 16]
I only want to keep this numbers as index in the third dimension of var1. It's correct If I just do the following?
var3 = var1(:,:,var2);
Or a better approach would be use a for loop?
for i1 = 1:size(var2,1)
dummy = var2(i1);
var3(:,:,i1) = var1(:,:,dummy);
end
I'm concerned with optimization since I need to do this inside another for loop. Which is better or is there another better approach?
Thank in advance
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!