Command Reference : Matrix Language Reference
  
 
@ediv
Element division of two matrices.
Syntax: @ediv(m1, m2)
m1: matrix, vector
m2: matrix, vector
Return: matrix, vector
Returns the element by element division of two matrix objects or syms.
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
matrix m3 = @ediv(m1, m2)
Cross-references
See also @einv, @emult, and @epow.