Filter löschen
Filter löschen

Find position of specific digit in a number

5 Ansichten (letzte 30 Tage)
Inna Pelloso
Inna Pelloso am 28 Mär. 2023
Bearbeitet: Inna Pelloso am 28 Mär. 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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 28 Mär. 2023
A = [123; 312]
A = 2×1
123 312
B = cell2mat(strfind(string(A), '3'))
B = 2×1
3 1
This will fail if any entry does not have exactly one 3. And watch out for floating point data, string() will round it.
  1 Kommentar
Inna Pelloso
Inna Pelloso am 28 Mär. 2023
Bearbeitet: Inna Pelloso am 28 Mär. 2023
Thank you! Also, thank you for all the great insight and answers in the forum over the years, too!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by