Summation of a character

9 ビュー (過去 30 日間)
Edward Huang
Edward Huang 2019 年 6 月 20 日
編集済み: Stephen23 2019 年 6 月 20 日
I was working on Cody Problem 74 where I found examples like:
sum('13') = 100
sum('22') = 100
sum('123456') = 309
I wonder how it works here, i.e., sums a character but returns a double.
Thanks in advance.

採用された回答

Stephen23
Stephen23 2019 年 6 月 20 日
編集済み: Stephen23 2019 年 6 月 20 日
Take a look at the character codes, e.g.:
>> double('13')
ans =
49 51
The function sum simply sums up the character codes:

その他の回答 (1 件)

KSSV
KSSV 2019 年 6 月 20 日
Read about uint16. This will convert the characters into numeric codes. When you use sum on the characters, they will be converted to uint16 numbers and gets summed up. Check below code.
a = uint16('13') ;
b = uint16('22') ;
c = uint16('123456') ;
In the above sum(a) and sum('13') are same.

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by