Lapack++
|
Some additional vector-matrix operators. More...
Go to the source code of this file.
Vector operators (deprecated) | |
LaVectorDouble | operator* (const LaVectorDouble &x, double a) |
LaVectorDouble | operator* (double a, const LaVectorDouble &x) |
double | operator* (const LaVectorDouble &dx, const LaVectorDouble &dy) |
LaVectorDouble | operator+ (const LaVectorDouble &dx, const LaVectorDouble &dy) |
LaVectorDouble | operator- (const LaVectorDouble &dx, const LaVectorDouble &dy) |
Matrix/Vector operators (deprecated) | |
LaVectorDouble | operator* (const LaGenMatDouble &A, const LaVectorDouble &dx) |
Matrix/Matrix operators (deprecated) | |
LaGenMatDouble | operator* (const LaGenMatDouble &A, const LaGenMatDouble &B) |
LaGenMatDouble | operator- (const LaGenMatDouble &A, const LaGenMatDouble &B) |
LaGenMatDouble | operator+ (const LaGenMatDouble &A, const LaGenMatDouble &B) |
LaGenMatComplex | operator+ (const LaGenMatComplex &A, const LaGenMatComplex &B) |
LaGenMatComplex | operator- (const LaGenMatComplex &A, const LaGenMatComplex &B) |
Some additional vector-matrix operators.
DEPRECATED. This file defines some additional operators for vectors and matrices. But in general the Blas functions from blas1pp.h, blas2pp.h and blas3pp.h are much faster and should be preferred.
LaVectorDouble operator* | ( | const LaVectorDouble & | x, |
double | a | ||
) |
DEPRECATED. Use the Blas functions from blas1pp.h, blas2pp.h and blas3pp.h instead because they are much faster. These operators can already be disabled when you #define LA_NO_DEPRECATED.
Referenced by operator*().
LaVectorDouble operator* | ( | double | a, |
const LaVectorDouble & | x | ||
) | [inline] |
DEPRECATED. Use the Blas functions from blas1pp.h, blas2pp.h and blas3pp.h instead because they are much faster. These operators can already be disabled when you #define LA_NO_DEPRECATED.
References operator*().
double operator* | ( | const LaVectorDouble & | dx, |
const LaVectorDouble & | dy | ||
) |
LaVectorDouble operator+ | ( | const LaVectorDouble & | dx, |
const LaVectorDouble & | dy | ||
) |
LaVectorDouble operator- | ( | const LaVectorDouble & | dx, |
const LaVectorDouble & | dy | ||
) |
LaVectorDouble operator* | ( | const LaGenMatDouble & | A, |
const LaVectorDouble & | dx | ||
) |
LaGenMatDouble operator* | ( | const LaGenMatDouble & | A, |
const LaGenMatDouble & | B | ||
) |
LaGenMatDouble operator- | ( | const LaGenMatDouble & | A, |
const LaGenMatDouble & | B | ||
) |
LaGenMatDouble operator+ | ( | const LaGenMatDouble & | A, |
const LaGenMatDouble & | B | ||
) |
LaGenMatComplex operator+ | ( | const LaGenMatComplex & | A, |
const LaGenMatComplex & | B | ||
) |
LaGenMatComplex operator- | ( | const LaGenMatComplex & | A, |
const LaGenMatComplex & | B | ||
) |