How to eliminate certain columns from a matrix
176 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hatake nara
am 13 Jun. 2019
Beantwortet: Manvi Goel
am 13 Jun. 2019
If I need to remove any column how do I do it?
For example:
s is a mxn matrix.I need to remove the odd columns i,e, the 1st,3rd.. columns.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Manvi Goel
am 13 Jun. 2019
Let the matrix be a.
You can remove the odd columns of a matrix by :
a(:,1:2:end) = []
% 1:2:end runs a loop from 1 till the numbe rof columns, increments the index by 2 every time and
% empties the column with that index.
Or use the following command to remove and column with index 'i'
a(:, i) = []
0 Kommentare
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!