How to remove the last column in an array

63 visualizzazioni (ultimi 30 giorni)
kavitha subramaniam
kavitha subramaniam il 28 Ott 2014
Risposto: James Tursa il 28 Ott 2014
How to remove the last column in this array?
a=[1 2 3 4
5 6 7 8
9 1 2 3
4 5 6 7];
Resultant array is
a=[1 2 3
5 6 7
9 1 2
4 5 6];

Risposte (2)

Julia
Julia il 28 Ott 2014
Hi again,
I think you should read a bit abot the ":"-operator, it is quite helpful ;)
a =
1 2 3 4
5 6 7 8
9 1 2 3
4 5 6 7
>> a=a(:,1:end-1)
a =
1 2 3
5 6 7
9 1 2
4 5 6
I also answered your last question. Did it help you? If so, please accept my answer, so other users know, that this solves the issue.

James Tursa
James Tursa il 28 Ott 2014
Another method:
a(:,end) = [];

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by