Extracting a submatrix based on conditions on first columns of a big matrix

25 Ansichten (letzte 30 Tage)
A small part of a big data is shown here !!. I want to extract a submatrix from this big data matrix and then perform operations.Extraction is purely based first coloumn values, for example if the values in first coloumn are greater than 527 and smaller than 580,it should extract a submatrix where entries in first coloumn are between 527 and 580 and have all coresponding coloumns from big data Matrix.Thanks

Akzeptierte Antwort

James Tursa
James Tursa am 14 Okt. 2020
BigMatrix = your big matrix
BigMatrix1 = BigMatrix(:,1); % 1st column
x = BigMatrix1 > 527 & BigMatrix1 < 580; % logical indexes of what you want
SubMatrix = BigMatrix(x,:); % the sub matrix

Weitere Antworten (0)

Kategorien

Mehr zu Statistics and Machine Learning Toolbox 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