Find position of specific digit in a number
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Inna Pelloso
el 28 de Mzo. de 2023
Editada: Inna Pelloso
el 28 de Mzo. de 2023
Hi,
I have A = [123; 312]. How can I find the position of the digit 3 in each element of A? That is, I want B = [3; 1].
Any help would be appreciated.
IP
1 comentario
Respuesta aceptada
Walter Roberson
el 28 de Mzo. de 2023
A = [123; 312]
B = cell2mat(strfind(string(A), '3'))
This will fail if any entry does not have exactly one 3. And watch out for floating point data, string() will round it.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!