Compare two revisions of: Matrix Variables

... ... @@ -63,6 +63,7 @@ Supported Matrix Operations are:
63 63 * Adjoint
64 64 * Determinant
65 65 * Trace
66 +* Norm
66 67
67 68 <div class="alert">An exception will be thrown if the matrix is not suitable for the operations (e.g inverse on not invertible matrices, unsuitable format on matrix multiplication)</div>
68 69 <div class="alert green">The operations trace and determinant will result in a 1x1 matrix. You can also use them in a function variable</div>
... ... @@ -82,8 +83,10 @@ Supported Matrix Operations are:
82 83 \matrix{K}{adjoint(C)} % adjoint of matrix
83 84 \matrix{L}{det(C)} % determinant of C, result is 1x1 matrix
84 85 \matrix{M}{trace(C)} % trace of C, result is 1x1 matrix
86 +\matrix{N}{norm(C)} % norm of C, result is 1x1 matrix
85 87 \function{fj}{det(C)} % determinant of C but as a function
86 88 \function{fk}{trace(C)} % trace of C but as a function
89 +\function{fk}{norm(C)} % norm of C but as a function
87 90 ...
88 91 \end{variables}
89 92 ```
90 93