Multidimensional array indexing question
1 次查看(过去 30 天)
显示 更早的评论
I have a matrix x that is of size [61 2 45].
linearIndex = find(x(:,1,:) < x(:,2,:));
xAverage = (x(:,1,:) + x(:,2,:))/2;
Now I want to assign the average to anywhere x(:,1,:) < x(:,2,:). I come up with the following but it seems a bit verbose and un-elegant. Thoughts on how to do this better?
[subScriptIndex1, subScriptIndex2, subScriptIndex3] = ind2sub(size(linearIndex), linearIndex);
x(subScriptIndex1, 1, subScriptIndex3) = xAverage(subScriptIndex1, 1, subScriptIndex3);
x(subScriptIndex1, 2, subScriptIndex3) = xAverage(subScriptIndex1, 1, subScriptIndex3);
采纳的回答
Stephen23
2016-8-8
编辑:Stephen23
2016-8-8
Your understanding is correct: if a logical index is shorter than the array it is being used on, then the index is not expanded in any way. The solution is to make the index the exact size that you require:
x = reshape((1:18)',[3 2 3])
xx = x;
idx = x(:,1,:) < x(:,2,:);
idx = idx(:,[1,1],:) % or repmat
x(idx) = nan
[xx(:) x(:)]
3 个评论
Stephen23
2016-8-8
Note that this behavior is closely related:
>> X = [1,2,3,4];
>> X([false,true]) % shorter than X
ans =
2
>> X([false,true,false(1,200)]) % longer than X, but only false..
ans =
2
更多回答(1 个)
Fangjun Jiang
2016-8-8
x=rand(6,2,4);
MeanX=mean(x,2);
idx=x(:,1,:) < x(:,2,:);
x(idx)=MeanX(idx);
3 个评论
Fangjun Jiang
2016-8-8
How about this? I think it works but what if the second dimension is larger than 2? There must be a a better way.
x=rand(6,2,4);
MeanX=mean(x,2);
MeanX(:,2,:)=MeanX(:,1,:);
idx=x(:,1,:) < x(:,2,:);
idx(:,2,:)=idx(:,1,:);
x(idx)=MeanX(idx);
另请参阅
类别
在 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!