Type:
Class
Constants:
SELECTORS : {all: true, diagonal: true, off_diagonal: true, lower: true, strict_lower: true, strict_upper: true, upper: true}.freeze

The Matrix class represents a mathematical matrix. It provides methods for creating matrices, operating on them arithmetically and algebraically, and determining their mathematical properties (trace, rank, inverse, determinant).

Method Catalogue

To create a matrix:

To access Matrix elements/columns/rows/submatrices/properties:

Properties of a matrix:

Matrix arithmetic:

Matrix functions:

Matrix decompositions:

Complex arithmetic:

  • conj

  • conjugate

  • imag

  • imaginary

  • real

  • rect

  • rectangular

Conversion to other data types:

String representations:

element

element(i, j) Instance Public methods Alias for:

2015-04-18 07:27:02
hermitian?

hermitian?() Instance Public methods Returns true is this is an

2015-04-18 08:07:20
clone

clone() Instance Public methods Returns a clone of the matrix, so that the contents

2015-04-18 06:25:03
[] 2

[](i, j) Instance Public methods Returns element (i,j)

2015-04-18 06:17:33
new

new(rows, column_count = rows[0].size) Class Public methods

2015-04-18 05:34:29
eql?

eql?(other) Instance Public methods

2015-04-18 07:47:50
lup_decomposition

lup_decomposition() Instance Public methods Alias for:

2015-04-18 08:55:02
orthogonal?

orthogonal?() Instance Public methods Returns true is this is an

2015-04-18 09:07:54
elements_to_f

elements_to_f() Instance Public methods

2015-04-18 07:29:54
round

round(ndigits=0) Instance Public methods Returns a matrix with entries rounded

2015-04-18 09:49:29