diff options
Diffstat (limited to 'matrices/quickref.tex')
-rw-r--r-- | matrices/quickref.tex | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/matrices/quickref.tex b/matrices/quickref.tex new file mode 100644 index 0000000..8e831bb --- /dev/null +++ b/matrices/quickref.tex @@ -0,0 +1,26 @@ +Matrix Multiplication:\\ +{\ex \lstinline| c = dot(a,b)|} + +Transpose of a matrix:\\ +{\ex \lstinline| m.T|} + +Inverse of a matrix:\\ +{\ex \lstinline| im = inv(m)|} + +Frobenius norm of matrix:\\ +{\ex \lstinline| norm(m)|} + +Inverse norm of matrix:\\ +{\ex \lstinline| norm(m, ord=inf)|} + +Determinant of matrix:\\ +{\ex \lstinline| det(m)|} + +Eigen values of matrix:\\ +{\ex \lstinline| eigvals(m)|} + +Eigen vectors of matrix:\\ +{\ex \lstinline| eig(m)[1]|} + +Singular Value Decomposition on matrix m:\\ +{\ex \lstinline| svd(m)|} |