How do I vectorize each digit of an integer and store it as an array?

32 ビュー (過去 30 日間)
Srishti Saha
Srishti Saha 2018 年 5 月 8 日
編集済み: Stephen23 2018 年 5 月 8 日
I have to convert an integer into a vector of all its digits. Example: 100---> [1 0 0]
function ans = int2vec(x)
t=regexp(num2str(x),'\d','match');
[];
arrayfun(@(i) [ans,str2num(t{i})],1:length(t));
end
Though this worked for me, is there a better solution.

採用された回答

Stephen23
Stephen23 2018 年 5 月 8 日
編集済み: Stephen23 2018 年 5 月 8 日
>> num2str(100)-'0'
ans =
1 0 0
If you want all digits, regardless of position and role (e.g. exponent):
>> s = num2str(100);
>> s(isstrprop(s,'digit'))-'0'
ans =
1 0 0

その他の回答 (1 件)

Stalin Samuel
Stalin Samuel 2018 年 5 月 8 日

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by