How to return a true/false logical array from a string array of repeating numbers?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Liv
el 7 de Jul. de 2022
ans = 3 2 1 5 1 4 0
I want this to return a 7x1 logical array 0 0 1 0 1 0 0. Corresponding to the repeating “1” in the ans variable. Or 1 1 0 1 0 1 1. Whichever is easier to program. How do I do this?
0 comentarios
Respuesta aceptada
Rohit Kulkarni
el 7 de Jul. de 2022
I think this may work:
A = [3 3 2 1 5 1 0 4];
[uniqueA i j] = unique(A,'first');
idRep = find(not(ismember(1:numel(A),i)))
rep_var = A(idRep)
ll = ismember(A,rep_var)
Más respuestas (1)
Jon
el 7 de Jul. de 2022
x = [3 2 1 5 1 4 0]
L = x == 1
5 comentarios
Jon
el 7 de Jul. de 2022
Editada: Jon
el 7 de Jul. de 2022
That's fine as long as you have a solution, but I'm puzzled, as to why you would have array bounds errors, when as you can see it ran without issues in the small example I show above. As you had an array bounds error, are you sure you used :
[N,edges,bin]= histcounts(x,[u,u(end)+1])
and not:
[N,edges,bin]= histcounts(x,[u,u(end+1)])
Ver también
Categorías
Más información sobre Matrix Indexing 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!