|
MyraMath
|
General purpose dense matrix container, O(i*j) storage. More...
#include <myramath/MYRAMATH_EXPORT.h>#include <myramath/utility/Number.h>#include <myramath/dense/VectorRange.h>#include <myramath/dense/MatrixRange.h>#include <utility>#include <vector>#include <iosfwd>#include <initializer_list>Go to the source code of this file.
Classes | |
| class | myra::Expression< Arity, Number > |
| Given an index (i,j,etc), returns a value. More... | |
| class | myra::Matrix< Number > |
| Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More... | |
| class | myra::Array1< T > |
| Container of values, allows random (i) access. More... | |
| class | myra::Array2< T > |
| Container of values, allows random (i,j) access. More... | |
| class | myra::Matrix< Number > |
| Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More... | |
| class | myra::ReflectNumber< Matrix< Number > > |
| Specializing ReflectNumber<> for Matrix<Number> More... | |
Functions | |
| Matrix< NumberS > | myra::operator+ (const CMatrixRange< NumberS > &A, const CMatrixRange< NumberS > &B) |
| Returns A+B. | |
| Matrix< NumberD > | myra::operator+ (const CMatrixRange< NumberD > &A, const CMatrixRange< NumberD > &B) |
| Returns A+B. | |
| Matrix< NumberC > | myra::operator+ (const CMatrixRange< NumberC > &A, const CMatrixRange< NumberC > &B) |
| Returns A+B. | |
| Matrix< NumberZ > | myra::operator+ (const CMatrixRange< NumberZ > &A, const CMatrixRange< NumberZ > &B) |
| Returns A+B. | |
| Matrix< NumberS > | myra::operator- (const CMatrixRange< NumberS > &A, const CMatrixRange< NumberS > &B) |
| Returns A-B. | |
| Matrix< NumberD > | myra::operator- (const CMatrixRange< NumberD > &A, const CMatrixRange< NumberD > &B) |
| Returns A-B. | |
| Matrix< NumberC > | myra::operator- (const CMatrixRange< NumberC > &A, const CMatrixRange< NumberC > &B) |
| Returns A-B. | |
| Matrix< NumberZ > | myra::operator- (const CMatrixRange< NumberZ > &A, const CMatrixRange< NumberZ > &B) |
| Returns A-B. | |
| Matrix< NumberS > | myra::operator* (NumberS alpha, const CMatrixRange< NumberS > &A) |
| Returns alpha*A. | |
| Matrix< NumberD > | myra::operator* (NumberD alpha, const CMatrixRange< NumberD > &A) |
| Returns alpha*A. | |
| Matrix< NumberC > | myra::operator* (NumberC alpha, const CMatrixRange< NumberC > &A) |
| Returns alpha*A. | |
| Matrix< NumberZ > | myra::operator* (NumberZ alpha, const CMatrixRange< NumberZ > &A) |
| Returns alpha*A. | |
| Matrix< NumberS > | myra::operator* (const CMatrixRange< NumberS > &A, NumberS alpha) |
| Returns A*alpha. | |
| Matrix< NumberD > | myra::operator* (const CMatrixRange< NumberD > &A, NumberD alpha) |
| Returns A*alpha. | |
| Matrix< NumberC > | myra::operator* (const CMatrixRange< NumberC > &A, NumberC alpha) |
| Returns A*alpha. | |
| Matrix< NumberZ > | myra::operator* (const CMatrixRange< NumberZ > &A, NumberZ alpha) |
| Returns A*alpha. | |
| Matrix< NumberC > | myra::make_complex (const CMatrixRange< NumberS > &A) |
| Promotes a real Matrix into a complex one. | |
| Matrix< NumberZ > | myra::make_complex (const CMatrixRange< NumberD > &A) |
| Promotes a real Matrix into a complex one. | |
| Matrix< NumberC > | myra::make_complex (const CMatrixRange< NumberS > &R, const CMatrixRange< NumberS > &I) |
| Builds a complex Matrix from real/imaginary parts. | |
| Matrix< NumberZ > | myra::make_complex (const CMatrixRange< NumberD > &R, const CMatrixRange< NumberD > &I) |
| Builds a complex Matrix from real/imaginary parts. | |
| Matrix< NumberS > | myra::realpart (const CMatrixRange< NumberS > &A) |
| Extracts the real part of a complex Matrix. | |
| Matrix< NumberD > | myra::realpart (const CMatrixRange< NumberD > &A) |
| Extracts the real part of a complex Matrix. | |
| Matrix< NumberS > | myra::realpart (const CMatrixRange< NumberC > &A) |
| Extracts the real part of a complex Matrix. | |
| Matrix< NumberD > | myra::realpart (const CMatrixRange< NumberZ > &A) |
| Extracts the real part of a complex Matrix. | |
| Matrix< NumberS > | myra::imagpart (const CMatrixRange< NumberC > &A) |
| Extracts the imaginary part of a complex Matrix. | |
| Matrix< NumberD > | myra::imagpart (const CMatrixRange< NumberZ > &A) |
| Extracts the imaginary part of a complex Matrix. | |
General purpose dense matrix container, O(i*j) storage.
1.8.13