Filter löschen
Filter löschen

I had a matrix s of size 4*12540, i want to use only 4*4 of this matrix how should i remove extra columns?

2 Ansichten (letzte 30 Tage)
I had a matrix s of size 4*12540, i want to use only 4*4 of this matrix how should i remove extra columns?

Akzeptierte Antwort

Dishant Arora
Dishant Arora am 31 Mär. 2014
A = yourArray(:,1:4);
or
yourArray(:,5:end) = [];

Weitere Antworten (1)

Joseph Cheng
Joseph Cheng am 31 Mär. 2014
Bearbeitet: Joseph Cheng am 31 Mär. 2014
If you want to completely remove these columns you can use [] ;
example:
Testmatrix = rand(4,12540);
Testmatrix(:,5:end) = [];%All rows in columns 5 through end are blank;

Kategorien

Mehr zu Matrices and Arrays 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!

Translated by