how find idx string deleted
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
piero
el 29 de Nov. de 2023
Respondida: Fangjun Jiang
el 29 de Nov. de 2023
a={'aa','bb','cc','aa'}
unique(a,'stable')
%i want to find idx string deleted..( idx=4)
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 29 de Nov. de 2023
a={'aa','bb','cc','aa'};
[b,ida,idb]=unique(a,'stable')
setdiff(1:numel(a),ida)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!