extract column index of a particular values in the matrix

10 vues (au cours des 30 derniers jours)
Turbulence Analysis
Turbulence Analysis le 2 Fév 2021
Hi,
I got 1 x 10000 matrix named x1 (attached here), I intend to extrcat the indices of the colum which got the values in the range of 500 to 550.. Is there away to extract the indices of the column based on criteria...

Réponse acceptée

Ive J
Ive J le 2 Fév 2021
B = x1(x1 <= 550 & x1 >= 500);
  1 commentaire
Turbulence Analysis
Turbulence Analysis le 2 Fév 2021
Thanks, Ive. Actually, the requirement is to find along with indices,
so I have used as follows,,
B = find(x1 <= 550 & x1 >= 500);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by