delete row in matrix if value in another matrix is unique

1 回表示 (過去 30 日間)
Frederik Reese
Frederik Reese 2022 年 7 月 19 日
回答済み: Jonas 2022 年 7 月 19 日
Hi,
probably a simple question, but I need your help.
I have 2 matrices with 1 column each. Values ​​appear twice in the first matrix (x1). I select this with unique and delete it. In the 2nd matrix (y1) I want to delete the same row as in matrix 1. So e.g. Row 12 contains twice the value and is deleted, then row 12 in the other matrix should also be deleted after that they should contain the same number of values.
The two matrices are attached
Thank you very much

採用された回答

Jonas
Jonas 2022 年 7 月 19 日
you want to delete entries when the number is repeated first?
firstVec=[5 3 5 1 7 9 3 1 4];
secVector=1:numel(firstVec)
secVector = 1×9
1 2 3 4 5 6 7 8 9
[~,firstOnly]=unique(firstVec,'stable')
firstOnly = 6×1
1 2 4 5 6 9
% keep only entries at first number occurence
secVector(firstOnly)
ans = 1×6
1 2 4 5 6 9

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by