convert each character of an array to int

5 ビュー (過去 30 日間)
Mireia Boneta Camí
Mireia Boneta Camí 2020 年 10 月 24 日
コメント済み: Ameer Hamza 2020 年 10 月 24 日
I have a char array like this '10000111101010110101' and I want to convert each 0 and 1 to int and obtain [1 0 0 0 0 1 1 ...]. I'd like to do it without fors, is it possible?

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 24 日
Easy peasy
x = '10000111101010110101';
y = x - '0'
  2 件のコメント
drummer
drummer 2020 年 10 月 24 日
how does this work?
Ameer Hamza
Ameer Hamza 2020 年 10 月 24 日
If you look at the ASCII code for the character, you can see what is happening.
For example,
x = '10000111101010110101';
y = x + 0
Result
>> y
y =
Columns 1 through 17
49 48 48 48 48 49 49 49 49 48 49 48 49 48 49 49 48
Columns 18 through 20
49 48 49
So, if you subtract the ascii code for '0', you will get actual numbers.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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