Effacer les filtres
Effacer les filtres

How to separate specific data from an array in a new file?

2 vues (au cours des 30 derniers jours)
Matheus Brito
Matheus Brito le 7 Août 2020
Réponse apportée : dpb le 7 Août 2020
Hello,
I have a doubt on how to separate different data from an array. For example: Each matrix has different number of rows and columns. In the first column of each matrix, the numbers 1, 2, and 3 always appear. How can I do to separate the data in a new file ??? containing only the data of the lines that have the number 1, that have the number 2 and that have the number 3 ???
Thanks and grateful for your help!

Réponse acceptée

dpb
dpb le 7 Août 2020
ia=ismember(data(:,1),[1:3]);
writematrix(data(ix,:))

Plus de réponses (0)

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by