coverting string to ascii value in Matlab

240 visualizzazioni (ultimi 30 giorni)
Hello the letter 'a' is 61 why in matlab i get NAN?
  1 Commento
Stephen23
Stephen23 il 29 Ott 2020
"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

Accedi per commentare.

Risposta accettata

Stephen23
Stephen23 il 29 Ott 2020
Modificato: Stephen23 il 29 Ott 2020
"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

Più risposte (0)

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by