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

조회 수: 1 (최근 30일)
Matheus Brito
Matheus Brito 2020년 8월 7일
답변: dpb 2020년 8월 7일
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!

채택된 답변

dpb
dpb 2020년 8월 7일
ia=ismember(data(:,1),[1:3]);
writematrix(data(ix,:))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by