If I have a string in matlab, I can convert it to a vector of ASCII codes using double:
>> my_string = 'asd';
>> double(my_string)
ans =
97 115 100
How can I go back the other way? i.e., if I have an ASCII code in a MATLAB vector, how can I create the corresponding string?
e.g
ascii_codes = [97 115 100];
should be converted to...
my_string = 'asd'