parse_macro(line) Instance Public methods
mdoc2man(i, o) Instance Public methods
new() Class Public methods
mdoc2man(i, o) Class Public methods
zero?() Instance Public methods Returns true is this is a matrix with only zero elements
upper_triangular?() Instance Public methods Returns true is this is an upper triangular matrix.
unitary?() Instance Public methods Returns true is this is a unitary matrix Raises an error if matrix is not square.
transpose() Instance Public methods Returns the transpose of the matrix. Matrix[[1,2], [3,4], [5,6]] => 1 2 3 4 5 6 Matrix[[1,2], [3,4], [5,6]].transpose => 1 3 5 2 4 6 t
trace() Instance Public methods Returns the trace (sum of diagonal elements) of the matrix. Matrix[[7,6], [3,9]].trace => 16 tr
tr() Instance Public methods Alias for: trace
Page 1777 of 2275