How to index all columns but one in a matrix?

71 次查看(过去 30 天)
Hi!
I want to do index/use all columns in a matrix but a single one, so for example:
A=[1 2 3 4; 1 2 3 4; 1 2 3 4] and I 'd like to get at B=[1 2 4; 1 2 4; 1 2 4].
A long way to that would be: B=[A(:,1:2),A(:,4)], but is there anything faster/built in?
Best Peter

采纳的回答

James Tursa
James Tursa 2013-8-2
B = A;
B(:,3) = [];
  7 个评论
James Tursa
James Tursa 2018-8-3
Because [1 1 0 1] is not a logical vector and you are not accounting for both dimensions. E.g., compare your code to this:
X(:,logical([1 1 0 1]))

请先登录,再进行评论。

更多回答(1 个)

David Sanchez
David Sanchez 2013-8-2
% no need of a new matrix, remake the old one:
A = exp(A(:,[1:2,4]));

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by