string ascii conversions
a=ascii(txt)
txt=ascii(a)
:txt A character string or a matrix of character strings. : :a A vector of integer ascii codes :
This function convert Scilab string to a vector of ascii code (the first 127 codes are ASCII) or vector of ascii code to Scilab strings.
If txt is a matrix of string, ascii(txt) is equivalent to ascii(strcat(txt))
ascii(["hello";"world"])
ascii("scilab")
ascii([115 99 105 108 97 98])