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: Linear Algebra
See also: trans inv

Function: '
Description: ' transposes rows and columns of an array. This operator is equal to the function trans.

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

Note:

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

Result:
Contents of _tmp



[1,]     1     2

[2,]     3     4

[3,]     5     6



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