A column vector.
More...
#include </home/werner/origo/vish/ocean/eagle/Matrix.hpp>
List of all members.
Public Types
-
typedef Matrix< R, 1, value > Base_t
-
typedef Operator<'*'> Mult
- Computational constructor argument for multiplicative operations.
Public Member Functions
-
Base_t & base ()
-
const Base_t & base () const
-
Column ()
- Default constructor (no initialization!)
-
template<class ValueType > Column (const ValueType &V)
-
template<class ValueType > Column (const FixedArray< ValueType, R > &V)
- Explicit construction from compatible base type.
-
Column (const Row< R, value > &r, const TransposeOperation &)
- Computational constructor for transpose operation.
-
Column (const Column< R, value > &r, const value &V, const Mult &)
- Computational constructor for scalar multiplicatoin.
-
Column (const Column &A, const Operator<'-'> &Op)
- Computational constructor for unary minus.
-
template<class AType , class BType , OperatorID_t CompType> Column (const FixedArray< AType, R > &l, const FixedArray< BType, R > &r, const Operator< CompType > &Op)
- Generic computational constructor for two arrays of size compatible with the column vector.
-
template<class ValueType , OperatorID_t CompType> Column (const FixedArray< ValueType, R > &l, const Operator< CompType > &C, const value &scalar)
- Generic computational constructor for column/scalar operations.
-
template<class ValueType , OperatorID_t CompType> Column (const Operator< CompType > &C, const value &scalar, const FixedArray< ValueType, R > &l)
- Generic computational constructor for scalar/column operations.
- template<int C> Column (const Matrix< R, C, value > &A, const Column< C, value > &V)
- Multiply r (rows) by c (columns) matrix A on the left by column vector V of dimension c on the right to produce a (column) vector Y output of dimension r.
- template<int C> Column (const Matrix< R, C, value > &M, int c)
- Construct column vector from some matrix column.
-
value & operator[] (int i)
- Access element for writing.
-
const value & operator[] (int i) const
- Element access operation for reading.
-
const Row< R, value > & transpose () const
Related Functions
(Note that these are not member functions.)
- template<int R, int C, class value > Column< R, value > operator* (const Matrix< R, C, value > &A, const Column< C, value > &V)
- Multiply r (rows) by c (columns) matrix A on the left by column vector V of dimension c on the right to produce a (column) vector C output of dimension r.
Detailed Description
A column vector.
(1)
(2)
(3)
- See also:
- Row, Matrix
Constructor & Destructor Documentation
template<int C>
Eagle::Column::Column |
( |
const Matrix< R, C, value > & |
A, |
|
|
const Column< C, value > & |
V |
|
) |
| [inline] |
Multiply r (rows) by c (columns) matrix A on the left by column vector V of dimension c on the right to produce a (column) vector Y output of dimension r.
this = A * V c = M*c
(1)
(2)
(3)
(1 2 3) (13)
(4 5 6) (32)
template<int C>
Eagle::Column::Column |
( |
const Matrix< R, C, value > & |
M, |
|
|
int |
c |
|
) |
| [inline] |
Construct column vector from some matrix column.
- Parameters:
-
M | The Matrix |
c | The selected column |
The documentation for this class was generated from the following file: