Itasca C++ Interface
|
A 1-Dimensional version of Matrix, to represent a vector. More...
#include <matrix.h>
Public Member Functions | |
VMatrix () | |
Default constructor - no data initialization. | |
VMatrix (const T &t) | |
Explicit constructor, all elements initialzed to t. | |
VMatrix (const VMatrix< T, S > &m) | |
Copy constructor. | |
VMatrix (const Matrix< T, S, 1 > &m) | |
Copy contructor, works on Matrix if SY is 1. | |
const VMatrix< T, S > & | operator= (const VMatrix< T, S > &m) |
Equality operator. | |
const VMatrix< T, S > & | operator= (const Matrix< T, S, 1 > &m) |
Equality operator, works on Matrix is SY is 1. | |
const T & | operator[] (unsigned x) const |
1D version of array operator, which currently unfortunately eliminates [x][0] syntax on VMatrix (may need to fix later). | |
T & | operator[] (unsigned x) |
1D version of array operator, which currently unfortunately eliminates [x][0] syntax on VMatrix (may need to fix later). | |
![]() | |
Matrix () | |
Default constructor, does nothing and no initialization. | |
Matrix (const T &t) | |
Explicit constructor, initializes all elements to value t. | |
Matrix (const Matrix< T, SX, SY > &m) | |
Copy constructor. | |
const Matrix< T, SX, SY > & | operator= (const Matrix< T, SX, SY > &m) |
Equality operator. | |
const T & | get (unsigned x, unsigned y) const |
Retrieve value at row x column y. Bounds checking is done in a debug compile. | |
T & | get (unsigned x, unsigned y) |
Retrieve value at row x column y. Bounds checking is done in a debug compile. | |
const Column | operator[] (unsigned y) const |
Array access operator returns a Column helper class, which has it's own [] operator to access a column of the row. | |
Column | operator[] (unsigned y) |
Array access operator returns a Column helper class, which has it's own [] operator to access a column of the row. | |
const T & | operator() (unsigned x, unsigned y) const |
() operator access to get(x,y) | |
T & | operator() (unsigned x, unsigned y) |
() operator access to get(x,y) | |
const Matrix< T, SX, SY > & | operator+= (const Matrix< T, SX, SY > &m) |
In-place matrix addition. | |
const Matrix< T, SX, SY > & | operator-= (const Matrix< T, SX, SY > &m) |
In-place matrix subtraction. | |
const Matrix< T, SX, SY > & | operator *= (const T &t) |
In-place multiplication by a scalar. | |
const Matrix< T, SX, SY > & | operator/= (const T &t) |
In-place division by a scalar. | |
Matrix< T, SX, SY > | operator+ (const Matrix< T, SX, SY > &m) const |
Binary addition operator. | |
Matrix< T, SX, SY > | operator- (const Matrix< T, SX, SY > &m) const |
Binary subtraction operator. | |
Matrix< T, SX, SY > | operator * (const T &t) const |
Binary scalar multiplication operator. | |
Matrix< T, SX, SZ > | operator * (const Matrix< T, SY, SZ > &m) const |
Binary matrix multiplication operator – simplest naive approach. | |
Matrix< T, SX, SY > | operator/ (const T &t) const |
Binary scalar division operator. | |
void | addBlock (const Matrix< T, SX2, SY2 > &m, unsigned iSrc, unsigned jSrc, unsigned iDst, unsigned jDst) |
Adds a block to this matrix from matrix m using the block size (BX,BY), from block indices (iSrc,jSrc) to block indices (iDst,jDst) | |
void | addGenBlock (const Matrix< T, SX2, SY2 > &m, unsigned iSrc, unsigned jSrc, unsigned iDst, unsigned jDst) |
Adds a block to this matrix from matrix m using the block size (BX,BY), from normal not block indices (iSrc,jSrc) to (iDst,jDst) | |
T | maxNorm () const |
Returns the infinity norm of the matrix, or the maximum absolute magnitude of any element. | |
Matrix< T, SY, SX > | transpose () const |
Return the transpose of the matrix. | |
T | trace () const |
Return the trace of the matrix or the sum of the diagonal components. Works also if the matrix is not square. | |
void | set (const T &t=T()) |
Set all entries in the matrix to t. | |
Related Functions | |
(Note that these are not member functions.) | |
template<class T > | |
VMatrix< T, 2 > | toMatrix (const Vector2< T > &v) |
template<class T > | |
VMatrix< T, 3 > | toMatrix (const Vector3< T > &v) |
![]() | |
Vector2< T > | operator * (const Matrix< T, 2, 2 > &m, const Vector2< T > &v) |
Vector3< T > | operator * (const Matrix< T, 3, 3 > &m, const Vector3< T > &v) |
Vector3< T > | operator * (const SymMatrix< T, 3 > &m, const Vector3< T > &v) |
Matrix< T, 3, 3 > | outerProduct (const Vector3< T > &v1, const Vector3< T > &v2) |
Creates a 3X3 Matrix from the outer product of two Vector3 types. | |
Matrix< T, 2, 2 > | outerProduct (const Vector2< T > &v1, const Vector2< T > &v2) |
Creates a 2X2 Matrix from the outer product of two Vector2 types. | |
T | determinant (const Matrix< T, 3, 3 > &mat) |
Returns the determinant of a 3X3 Matrix. More... | |
T | determinant (const Matrix< T, 2, 2 > &mat) |
Returns the determinant of a 2X2 Matrix. | |
Matrix< T, 3, 3 > | inverse (const Matrix< T, 3, 3 > &mat) |
Returns the inverse of a 3X3 Matrix. More... | |
Additional Inherited Members | |
![]() | |
static Matrix< T, SX, SY > | identity () |
Returns an identity matrix (or as close as you can get if not diagonal). | |
![]() | |
T | t_ [SX][SY] |
A 1-Dimensional version of Matrix, to represent a vector.
The SY dimension is fixed at 1. May want to specialize the get() function for optimal efficiency later.