matrices/quickref.tex
changeset 398 36295bb91766
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/matrices/quickref.tex	Sun Nov 07 18:36:59 2010 +0530
@@ -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)|}