Contains added code for stm32-L432KC compatibility

Dependents:   BNO080_stm32_compatible

Embed: (wiki syntax)

« Back to documentation index

TMatrix< 2, 1, value_type > Class Template Reference

TMatrix< 2, 1, value_type > Class Template Reference

Template specialization of TMatrix for Vector2. More...

#include <tmatrix.h>

Inherits BasicIndexMatrix< 2, 1, value_type >.

Public Member Functions

template<uint16_t RhsCols>
TMatrix< Rows, RhsCols,
value_type > 
operator* (const TMatrix< Cols, RhsCols, value_type > &rhs) const
 Matrix multiplication operator.
TMatrix< Rows, Cols, value_type > operator* (value_type s) const
 Scalar multiplication operator.
TMatrix< Rows, Cols, value_type > operator+ (const TMatrix< Rows, Cols, value_type > &rhs) const
 Element-wise addition operator.
TMatrix< Rows, Cols, value_type > operator- (const TMatrix< Rows, Cols, value_type > &rhs) const
 Element-wise subtraction operator.
TMatrix< Rows, Cols, value_type > operator- (void) const
 Unary negation operator.
TMatrix< Rows, Cols, value_type > operator/ (value_type s) const
 Scalar division operator.
TMatrix< Cols, Rows, value_type > transpose (void) const
 Returns the matrix transpose of this matrix.
value_type sum (void) const
 Returns the sum of the matrix entries.
value_type sumLog (void) const
 Returns the sum of the log of the matrix entries.
TMatrix< Rows, Cols, value_type > recip (void) const
 Returns this vector with its elements replaced by their reciprocals.
TMatrix< Rows, Cols, value_type > pseudoRecip (double epsilon=1e-50) const
 Returns this vector with its elements replaced by their reciprocals, unless a value is less than epsilon, in which case it is left as zero.
bool hasNaN (void) const
 Checks to see if any of this matrix's elements are NaN.

Static Public Member Functions

static TMatrix< Rows, Cols,
value_type > 
identity ()
 Returns an "identity" matrix with dimensions given by the class's template parameters.
static TMatrix< Rows, Cols,
value_type > 
one ()
 Returns a ones matrix with dimensions given by the class's template parameters.
static TMatrix< Rows, Cols,
value_type > 
zero ()
 Returns a zero matrix with dimensions given by the class's template parameters.

Data Fields

TMatrix<(Rows > Cols Cols:Rows
 Returns the diagonal elements of the matrix.

Friends

class BasicMatrix

Detailed Description

template<typename value_type>
class TMatrix< 2, 1, value_type >

Template specialization of TMatrix for Vector2.

Definition at line 196 of file tmatrix.h.


Member Function Documentation

bool hasNaN ( void   ) const [inherited]

Checks to see if any of this matrix's elements are NaN.

Definition at line 560 of file tmatrix.h.

static TMatrix<Rows, Cols, value_type> identity (  ) [static, inherited]

Returns an "identity" matrix with dimensions given by the class's template parameters.

In the case that Rows != Cols, this matrix is simply the one where the Aii elements for i < min(Rows, Cols) are 1, and all other elements are 0.

Returns:
A TMatrix<Rows, Cols, value_type> with off-diagonal elements set to 0, and diagonal elements set to 1.

Definition at line 519 of file tmatrix.h.

static TMatrix<Rows, Cols, value_type> one (  ) [static, inherited]

Returns a ones matrix with dimensions given by the class's template parameters.

Returns:
A TMatrix<Rows, Cols, value_type> with all elements set to 1.

Definition at line 534 of file tmatrix.h.

TMatrix<Rows, RhsCols, value_type> operator* ( const TMatrix< Cols, RhsCols, value_type > &  rhs ) const [inherited]

Matrix multiplication operator.

Returns:
A matrix where result is the matrix product (*this) * rhs.

Definition at line 342 of file tmatrix.h.

TMatrix<Rows, Cols, value_type> operator* ( value_type  s ) const [inherited]

Scalar multiplication operator.

Returns:
A matrix where result(i,j) = (*this)(i,j) * s.

Definition at line 399 of file tmatrix.h.

TMatrix<Rows, Cols, value_type> operator+ ( const TMatrix< Rows, Cols, value_type > &  rhs ) const [inherited]

Element-wise addition operator.

Returns:
A matrix where result(i,j) = (*this)(i,j) + rhs(i,j).

Definition at line 373 of file tmatrix.h.

TMatrix<Rows, Cols, value_type> operator- ( const TMatrix< Rows, Cols, value_type > &  rhs ) const [inherited]

Element-wise subtraction operator.

Returns:
A matrix where result(i,j) = (*this)(i,j) - rhs(i,j).

Definition at line 386 of file tmatrix.h.

TMatrix<Rows, Cols, value_type> operator- ( void   ) const [inherited]

Unary negation operator.

Returns:
A matrix where result(i,j) = -(*this)(i,j).

Definition at line 425 of file tmatrix.h.

TMatrix<Rows, Cols, value_type> operator/ ( value_type  s ) const [inherited]

Scalar division operator.

Returns:
A matrix where result(i,j) = (*this)(i,j) / s.

Definition at line 412 of file tmatrix.h.

TMatrix<Rows,Cols, value_type> pseudoRecip ( double  epsilon = 1e-50 ) const [inherited]

Returns this vector with its elements replaced by their reciprocals, unless a value is less than epsilon, in which case it is left as zero.

This is used mostly for pseudo-inverse computations.

Definition at line 495 of file tmatrix.h.

TMatrix<Rows,Cols, value_type> recip ( void   ) const [inherited]

Returns this vector with its elements replaced by their reciprocals.

Definition at line 481 of file tmatrix.h.

value_type sum ( void   ) const [inherited]

Returns the sum of the matrix entries.

Definition at line 467 of file tmatrix.h.

value_type sumLog ( void   ) const [inherited]

Returns the sum of the log of the matrix entries.

Definition at line 474 of file tmatrix.h.

TMatrix<Cols, Rows, value_type> transpose ( void   ) const [inherited]

Returns the matrix transpose of this matrix.

Returns:
A TMatrix of dimension Cols by Rows where result(i,j) = (*this)(j,i) for each element.

Definition at line 440 of file tmatrix.h.

static TMatrix<Rows, Cols, value_type> zero (  ) [static, inherited]

Returns a zero matrix with dimensions given by the class's template parameters.

Returns:
A TMatrix<Rows, Cols, value_type> containing all 0.

Definition at line 550 of file tmatrix.h.


Field Documentation

TMatrix<(Rows> Cols Cols [inherited]

Returns the diagonal elements of the matrix.

Returns:
A column vector v with dimension MIN(Rows,Cols) where v[i] = (*this)[i][i].

Definition at line 457 of file tmatrix.h.