Application Guide

214 Symbols
x
2
(square)
q key
Expr1
2
expression
Returns the square of the argument.
List1
2
list
Returns a list containing the squares of the
elements in List1.
squareMatrix1
2
matrix
Returns the matrix square of
squareMatrix1. This is not the same as
calculating the square of each element. Use
.^2 to calculate the square of each element.
.+ (dot add)
^+ keys
Matrix1 .+ Matrix2 matrix
Expr .+ Matrix1 matrix
Matrix1.+Matrix2 returns a matrix that is
the sum of each pair of corresponding
elements in Matrix1 and Matrix2.
Expr .+ Matrix1 returns a matrix that is
the sum of Expr and each element in
Matrix1.
.(dot subt.)
^- keys
Matrix1 . Matrix2 matrix
Expr . Matrix1 matrix
Matrix1. Matrix2 returns a matrix that is
the difference between each pair of
corresponding elements in Matrix1 and
Matrix2.
Expr . Matrix1 returns a matrix that is
the difference of Expr and each element in
Matrix1.
.