Element-wise exponentiation
mps_pow( rop, op1, op2 ) rop = mps_pow( op1, op2 )
Overloaded usage:
rop=op1 .^ op2
multi-precision matrix
multi-precision or Scilab matrices or scalars
Set rop
to the element-wise exponentiation of
op1
and op2
.
Set rop
to the element-wise exponentiation of
op1
and op2
.
Creates a multi-precision matrix the same size and precision as
op
containing the result.
Overloaded Scilab element-wise exponentiation operation.
Like most mps functions the mps_pow( rop, op1, op2 ) form is faster and
can reuse the space of an existing matrix but requires an already
initialized operand. Also, the same form can be used to perform an in-place
operation when rop
and op
are the
same.