Filter löschen
Filter löschen

how find idx string deleted

3 Ansichten (letzte 30 Tage)
piero
piero am 29 Nov. 2023
Beantwortet: Fangjun Jiang am 29 Nov. 2023
a={'aa','bb','cc','aa'}
a = 1×4 cell array
{'aa'} {'bb'} {'cc'} {'aa'}
unique(a,'stable')
ans = 1×3 cell array
{'aa'} {'bb'} {'cc'}
%i want to find idx string deleted..( idx=4)

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 29 Nov. 2023
a={'aa','bb','cc','aa'};
[b,ida,idb]=unique(a,'stable')
b = 1×3 cell array
{'aa'} {'bb'} {'cc'}
ida = 3×1
1 2 3
idb = 4×1
1 2 3 1
setdiff(1:numel(a),ida)
ans = 4

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by