Truncate an array in a specified dimension in Matlab
105 次查看(过去 30 天)
显示 更早的评论
In Matlab, does a pad command exist, which also pads in the negative dimension (therefore removing indices in a specified dimension)?
[Edit: I knew something did this - fft does this for the input, but it also takes the fft.]
I have a function which can receive input data x in n_dim dimensions.
I would like to remove all but n datapoints from a user specified dimension dim. I could use shiftdim to always make the specified dimension the first dimension; however, how do I code such that I do not need a finite number of colons to represent the dimensions of the input data x?
x = rand(01,12,01); % n_dim = 1
y = rand(04,12,01); % n_dim = 2
z = rand(04,12,07); % n_dim = 3
n = 3
see:
dim = 1
y = y(1:n, : );
z = z(1:n, :, : ); % Note that extra colons are needed depending on n_dim.
or:
dim = 2
x = x( 1:n );
y = y(:, 1:n, );
z = z(:, 1:n, : ); % Note that extra colons are needed depending on n_dim.
Do I need to use the shiftdim command to place dim in the first dimension, and then place the 1:n within the eval command along with a string variable which contains as many |,:|s as needed?
0 个评论
采纳的回答
Prasad Mendu
2016-7-6
Hello N Kando,
Yes, the solution that you proposed at the end of your question can be used to achieve it. Another way to achieve this is to declare all the data points other than the first n data points as empty ones.
For example, instead of doing
z = z(:,1:n,:);
we can do
z(:,n+1:end,:)=[];
2 个评论
Xuelei Lin
2019-3-19
but, if the number of dimension is not specified, how to do that. For example, when length(size(z)) is not specified.
Doug
2020-7-4
The only way I've found is a bit of a dirty hack because it requires 'eval' -- but it works:
A=rand(3,4,5,6);
indstring=repmat('1:end-1,',[1 ndims(A)]);
indstring(end)=[];
eval(['A=A(' indstring ');']);
size(A)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!