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: Operators
See also: ==

Function: =
Description: = is a operator of assignment for arrays. if the left argument already exists, it will be overwritten. Otherwise it is created. The left side is always an exact copy of the right object.

Usage: y = x
Input:
x array
Output:
y array

Example:
x = #(1,2)~#(3,4)~#(5,6)
x

Result:
Contents of x

[1,]     1     3     5
[2,]     2     4     6



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