Why does subtracting '0' from an array of char appear to convert it to a numerical double.
5 views (last 30 days)
Show older comments
X = '11231101' is an array of char
X - '0' seems to convert it to an array of double (I have seen coding doing this)
How is this working and where can I find an explanation of it. It looks very useful, but I want to understand it before I use it for real.
1 Comment
Stephen23
on 27 Jan 2023
Edited: Stephen23
on 27 Jan 2023
"How is this working and where can I find an explanation of it."
It simply subtracts the character codes of each character. Unicode character codes are briefly introduced here:
Like everything else on your computer, text is really just long lists of numbers, so there is no reason why they cannot be subtracted, multiplied, added, etc.
Accepted Answer
Rik
on 27 Jan 2023
The minus function is not really defined for char, so the operands need to be converted to a datatype that is supported.
Since char is a UTF-16 encoding, subtracting '0' from a char vector will convert the array to double, essentially converting all characters to their Unicode representation. Since those were developed by people to make sense, they just happen to be in increasing order.
double('0123456789')
double('0')
double('0123456789')-double('0')
Thus, subtracting 48 from the UTF-16 encoded Unicode value will give you the equivalent numbers.
5 Comments
More Answers (0)
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!