rdivide - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


MTM

  

rdivide

  

element-wise division

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

rdivide(M1,M2)

Parameters

M1

-

array

M2

-

array

Description

• 

The rdivide(M1,M2) function performs the element-wise division of M1 by M2.  The result, R, is formed as R[i,j] = M1[i,j] / M2[i,j].

• 

Arrays M1 and M2 must be the same size.

Examples

withMTM:

M1Matrix2,3,fill=6:

M2Matrix2,3,fill=2:

rdivideM1,M2

333333

(1)

See Also

MTM[ldivide]

MTM[mldivide]

MTM[mrdivide]