Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

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

Example:
x = #(65, 34, -1, 65.2)
char(x)

Result:
Contents of char


[1,] "A"

[2,] """

[3,] "˜"

[4,] "A"



(C) MD*TECH Method and Data Technologies, 05.02.2006