| Group: | String Manipulation |
| See also: | atof string substr |
| Function: | char | |
| Description: |
Convert numbers to characters depending on ASCII table in strings.
|
| Usage: | z=char(x) | |
| Input: | ||
| x | array of numbers | |
| Output: | ||
| z | array of strings | |
x = #(65, 34, -1, 65.2) char(x)
Contents of char [1,] "A" [2,] """ [3,] "˜" [4,] "A"
| Group: | String Manipulation |
| See also: | atof string substr |