Index slice of ND array of unknown dimension

18 ビュー (過去 30 日間)
Evan
Evan 2017 年 6 月 12 日
編集済み: Stephen23 2020 年 3 月 26 日
Let's say I have a 3D array A, and I want to remove a slice:
A(i,:,:) = [];
But what if I don't know the dimension of the array beforehand? Just doing
A(i,:) = [];
Is valid, but reshapes the array into a 2D matrix.
I was thinking something like:
A(i,indices{:}) = [];
but I don't think you can put a colon operator in a cell.

採用された回答

Stephen23
Stephen23 2017 年 6 月 12 日
編集済み: Stephen23 2017 年 6 月 12 日
If you do not know the size of the array before hand then you can call subsasgn directly. The function subsasgn is the actual function that MATLAB calls whenever you assign to an array using the indexing convenience operators () or {}, e.g. X(1) = 2, in just the same way that 1+2 is just a convenience operator for plus(1,2). We can also call subasgn directly, just like we could call plus if we so wished.
Here is a simple example of removing one row of A without hard-coding how many dimensions it has:
>> A = rand(5,4,3,2);
>> S.subs = repmat({':'},1,ndims(A));
>> S.subs{1} = 3; % the third row
>> S.type = '()';
>> B = subsasgn(A,S,[]);
>> size(B)
ans =
4 4 3 2
  4 件のコメント
Daniel Plotnick
Daniel Plotnick 2020 年 3 月 23 日
It looks like this has changed in more recent updates: I had been using this technique, but it failed when using it on a gpuArray. The included code below now works for gpuArrays and normal arrays:
A = gpuArray.rand(5,4,3,2);
v = repmat({':'},ndims(A),1);
v{1} = 3; % Do the third row
B = A;
B(v{:}) = []; % Note, you can replace this with a numeric to substitite instead of delete
size(B)
Stephen23
Stephen23 2020 年 3 月 26 日
編集済み: Stephen23 2020 年 3 月 26 日
@Daniel Plotnick: you should put that as an Answer, so other users could vote for it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by