![]() |
An instance of data type Matrix is a matrix of variables of number type NT. The types Matrix and Vector together realize many functions of basic linear algebra.
| |
the ring type of the components.
| |
| |
bidirectional iterator for accessing
all components row-wise.
| |
| |
random access iterator for accessing row
entries.
| |
| |
random access iterator for accessing
column entries.
|
There also constant versions of the above iterators: const_iterator, row_const_iterator, and column_const_iterator.
| |
a tag class for identity initialization
| |
| |
the vector type used.
|
| |
creates an instance M of type
Matrix.
| |
| |
creates an instance M of type
Matrix of dimension n × n initialized to the zero matrix.
| |
| |
creates an instance M of
type Matrix of dimension m × n initialized to the zero
matrix.
| |
| |
creates an instance
M of type Matrix of dimension
p.first × p.second initialized to the zero matrix.
| |
| |
creates an
instance M of type Matrix of dimension n × n
initialized to the identity matrix (times x).
| |
| |
creates an instance M
of type Matrix of dimension m × n initialized to the
matrix with x entries.
| |
| |
| |
creates an
instance M of type Matrix. Let S be the ordered set of
n column-vectors of common dimension m as given by the iterator
range [first,last). M is initialized to an m × n
matrix with the columns as specified by S. Precondition: Forward_iterator has a value type V from which we require to provide a iterator type V::const_iterator, to have V::value_type == NT. Note that Vector or std::vector<NT> fulfill these requirements.
| |
| |
creates an instance
M of type Matrix. Let A be an array of n
column-vectors of common dimension m. M is initialized to an
m × n matrix with the columns as specified by A.
|
|
| returns n, the number of rows of M. |
|
| |
returns m, the number of columns of M. | ||
|
| returns (m,n), the dimension pair of M. |
|
|
returns the i-th row of M (an
m - vector). Precondition: 0 ![]() ![]() |
|
|
returns the i-th column of M
(an n - vector). Precondition: 0 ![]() ![]() |
|
|
returns Mi,j. Precondition: 0 ![]() ![]() ![]() ![]() |
|
| |
swaps rows i and j. Precondition: 0 ![]() ![]() ![]() ![]() | ||
|
| |
swaps columns i and
j. Precondition: 0 ![]() ![]() ![]() ![]() | ||
|
| |
an iterator pointing to the
first entry of the ith row. Precondition: 0 ![]() ![]() | ||
|
|
an iterator pointing beyond
the last entry of the ith row. Precondition: 0 ![]() ![]() |
|
| |
an iterator pointing
to the first entry of the ith column. Precondition: 0 ![]() ![]() | ||
|
| |
an iterator pointing
beyond the last entry of the ith column. Precondition: 0 ![]() ![]() | ||
|
| an iterator pointing to the first entry of M. |
|
| an iterator pointing beyond the last entry of M. |
The same operations exist for row_const_iterator, column_const_iterator and const_iterator.
|
| Test for equality. |
|
| Test for inequality. |
|
|
Addition. Precondition: M.row_dimension() == M1.row_dimension() and M.column_dimension() == M1.column_dimension(). |
|
|
Subtraction. Precondition: M.row_dimension() == M1.row_dimension() and M.column_dimension() == M1.column_dimension(). |
|
| Negation. |
|
|
Multiplication. Precondition: M.column_dimension() = M1.row_dimension(). |
|
|
Multiplication with
vector. Precondition: M.column_dimension() = vec.dimension(). |
|
| Multiplication of every entry with x. |
|
| Multiplication of every entry with x. |