Find position of specific digit in a number
5 次查看(过去 30 天)
显示 更早的评论
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
采纳的回答
Walter Roberson
2023-3-28
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!