Delete a column from an array of uncertain size?

1 Ansicht (letzte 30 Tage)
Amanda
Amanda am 15 Jun. 2015
Kommentiert: Amanda am 15 Jun. 2015
Hi everyone.. I know there are answers out there regarding removing a column from an array with x dimensions--this much I have no problem doing.
I'm trying to turn some code into a function that I can use to solve the same type of problem with anywhere from 2 to 7 dimensions (or infinite, if I can write a general enough code).
What I have to do, in a certain part of the code, is take an array of grid points and drop the first point on the second dimension.
E.g. if it was a matrix I would write:
newarray = oldarray(:,2:end);
if it was a 4D array I would write:
newarray = oldarray(:,2:end,:,:);
What do you think the most efficient/general way to code this would be?
Thanks!
  2 Kommentare
Image Analyst
Image Analyst am 15 Jun. 2015
You know in advance what "x" is , right?
Amanda
Amanda am 15 Jun. 2015
Bearbeitet: Amanda am 15 Jun. 2015
Yes, but it is determined by the person using the function.
I can, for example, write
if num_dimensions == 2
newarray = oldarray(:,2:end);
elseif num_dimensions == 3
newarray = oldarray(:,2:end,:);
end
but that's not very efficient, I don't think.
My current thought is that I simply create the grid arrays within the function, and drop the first entry of the problematic dimensions before doing so... but this creates some other issues and so I'm curious to know if there is another option.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

David Young
David Young am 15 Jun. 2015
Bearbeitet: David Young am 15 Jun. 2015
The trick needed is to use the fact that cell arrays can be expanded into comma-separated lists, so can represent any number of subscripts. It works like this.
Test data:
x = 1 + randi(9); % random no. dimensions from 2 to 10
oldarray = rand(repmat(3, 1, x)); % 3 x 3 x 3 ... array
Computation:
% get cell array of subscript arguments representing whole of oldarray
subs = arrayfun(@(s) {1:s}, size(oldarray));
% change second subscript to start from 2
subs{2} = 2:size(oldarray,2);
% create new array by indexing old array
newarray = oldarray(subs{:});
Check newarray is correct size, and look at one column (noting that trailing ones are always OK regardless of the number of dimensions):
disp(size(oldarray));
disp(size(newarray));
disp(oldarray(1, :, 1, 1, 1, 1, 1, 1, 1, 1, 1));
disp(newarray(1, :, 1, 1, 1, 1, 1, 1, 1, 1, 1));
  1 Kommentar
Amanda
Amanda am 15 Jun. 2015
Thanks! This answer and the answer by Walter below both work and both make me so happy. I chose this one at the 'accepted' answer since a test ran in 0.002623 seconds versus 0.014156 seconds.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 15 Jun. 2015
s = size(oldarray);
[r, c, p] = size(oldarray); %deliberate that 3 outputs are given for array that might be more dimensions
newarray = reshape(oldarray,r,c,p);
newarray = reshape(newarray(:,2:end,:), [r, c-1, s(3:end)]);
That is, the 3 dimensional case covers the rest.

Community Treasure Hunt

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

Start Hunting!

Translated by