copy
|
y := x
|
FLA_Copy( x, y );
|
|
y := (xT)T
|
FLA_Copy_x( FLA_TRANSPOSE, xt, y );
|
Note:
here (xT)
is meant to indicate that x is originally stored as a
row-vector so that it needs to be transposed to copy it to y .
Typically, this means that x appears as a variable with a t
at the end: xt .
|
|
(yT)T := x
|
FLA_Copy_x( FLA_TRANSPOSE, x, yt );
|
Note:
here (yT)
is meant to indicate that y is originally stored as a
row-vector so that x needs to be transposed to copy it to y .
Typically, this means that y appears as a variable with a t
at the end: yt .
|
|
B := A
|
FLA_Copy( A, B );
|
|
B := AT
|
FLA_Copy_x( FLA_TRANSPOSE, A, B );
|
|
BT := A
|
FLA_Copy_x( FLA_TRANSPOSE, A, B );
|