.•(dot mult.)
^r keys
Matrix1 .• Matrix2⇒ matrix
Expr .• Matrix1 ⇒ matrix
Matrix1.• Matrix2 returns a matrix that is
the product of each pair of corresponding
elements in Matrix1 and Matrix2.
Expr .• Matrix1 returns a matrix
containing the products of Expr and each
element in Matrix1.
. ⁄ (dot divide)
^p keys
Matrix1. ⁄ Matrix2 ⇒ matrix
Expr . ⁄ Matrix1⇒ matrix
Matrix1 . ⁄ Matrix2 returns a matrix that is
the quotient of each pair of corresponding
elements in Matrix1 and Matrix2.
Expr . ⁄ Matrix1 returns a matrix that is
the quotient of Expr and each element in
Matrix1.
.^ (dot power)
^l keys
Matrix1 .^ Matrix2 ⇒ matrix
Expr . ^ Matrix1⇒ matrix
Matrix1.^ Matrix2 returns a matrix where
each element in Matrix2 is the exponent
for the corresponding element in Matrix1.
Expr .^ Matrix1 returns a matrix where
each element in Matrix1 is the exponent
for Expr.
− (negate)
v key
−Expr1 ⇒ expression
−List1 ⇒ list
−Matrix1 ⇒ matrix
Symbols 211