#include <SMatrix.h>
Inheritance diagram for SVector:
Public Member Functions | |
SVector (dword N=1) | |
constructor for a Vector of dimension N | |
SVector (dword N, double s) | |
constructor for a Vector of dimension N, with constant values s | |
SVector (dword N, const double *src) | |
constructor from double array | |
SVector (dword N, const float *src) | |
constructor from float array | |
SVector (const vuColourN &col) | |
copy constructor | |
SVector (const SVector &v) | |
copy constructor | |
SVector (const SMatrix &m) | |
copy constructor for a matrix, that has the apropriate Nx1 format | |
SVector (const coool::Vector< double > v) | |
dword | getSize () const |
returns the size of the vector | |
double & | operator[] (dword index) |
Direct access to the elements. | |
const double | operator[] (dword index) const |
Direct const access to the data. | |
operator linalg::Vector () const | |
convert to a linalg::Vector | |
operator coool::Vector () const | |
convert to a coool::Vector<double> |
Definition at line 174 of file SMatrix.h.
|
constructor for a Vector of dimension N
|
|
constructor for a Vector of dimension N, with constant values s
|
|
constructor from double array
|
|
constructor from float array
|
|
copy constructor
|
|
copy constructor
|
|
copy constructor for a matrix, that has the apropriate Nx1 format
Definition at line 190 of file SMatrix.h. References SMatrix::getNCols(). |
Here is the call graph for this function:
|
|
|
returns the size of the vector
Definition at line 197 of file SMatrix.h. References dword. Referenced by SMatrix::makeToeplitz(). |
|
convert to a coool::Vector<double>
Definition at line 538 of file SMatrix.cpp. References dword. |
|
convert to a linalg::Vector
Definition at line 548 of file SMatrix.cpp. References linalg::Vector::q_lwb(), and linalg::Vector::q_upb(). |
Here is the call graph for this function:
|
Direct const access to the data.
|
|
Direct access to the elements.
|