Command Reference : Function Reference : Function Reference: E
  
 
@ediv
Element by element division of two numeric objects.
Syntax: @ediv(m1, m2)
m1: numeric object
m2: numeric object
Return: vector or matrix object
Returns the element by element division of two numeric objects.
Each element of the returned matrix is equal to the corresponding element in m1 divided by the corresponding element in m2.
Note m1 and m2 must be of identical dimensions.
Examples
Let X and Y be matrices of IID normal variates. Then
matrix Z = @ediv(X, Y)
creates Z, a matrix of IID Cauchy variates.
Cross-references
See also @einv, @emult, and @epow.