How to get [1 0 1 0] from '1010'
4 ビュー (過去 30 日間)
古いコメントを表示
Durga Lal Shrestha
2014 年 9 月 29 日
コメント済み: Durga Lal Shrestha
2014 年 9 月 30 日
Is there any built-in function or easiest way to get [1 0 1 0] from '1010' (character array)?
I have used for loop, but is there any other way to get the results?
str = '1010';
vec = zeros(length(str),1);
for i=1:length(str)
vec(i) = str2double(str(i));
end
0 件のコメント
採用された回答
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!