coverting string to ascii value in Matlab

234 次查看(过去 30 天)
Hello the letter 'a' is 61 why in matlab i get NAN?
  1 个评论
Stephen23
Stephen23 2020-10-29
"Hello the letter 'a' is 61 why in matlab i get NAN?"
Sort of... just writing "61" without any indication of the base would lead most people to quite reasonably assume that you mean base 10, i.e. decimal. But in fact lower-case 'a' is:
  • 61 hexadecimal
  • 97 decimal

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2020-10-29
编辑:Stephen23 2020-10-29
"the letter 'a' is 61 why in matlab i get NAN?"
Because that is the wrong way to get the ASCII value (or character code, to be precise) of the string class.
And also the wrong value to expect as an output.
Here are two correct ways to get the character code of a character in a string:
var = "a";
double(char(var))
ans = 97
double(var{1})
ans = 97
These both return the correct decimal character code of the 'a' character (i.e. Unicode "Latin Small Letter A").
Explanation of the two mistakes in your approach:
  1. a string array is basically a container array of character vectors. This means that in order to get the character code of any character inside a string you first need to get the characters, not just the container object (a container object has no character code). This is explained here in the section "Access Characters Within Strings": https://www.mathworks.com/help/matlab/matlab_prog/create-string-arrays.html
  2. the function str2double converts the representation of a number into a numeric value, for example, it will convert '1.2' into the double 1.2, but it has nothing to do with character codes. If the string does not contain a valid number representation then str2double returns NaN (and in your example 'a' is definitely not a valid representation of a number). The documentation explains the correct way to get character codes here in quite a lot of detail and with plenty of examples too: https://www.mathworks.com/help/matlab/matlab_prog/unicode-and-ascii-values.html

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by