#include "octave-config.h"
#include "DET.h"
#include "MArray.h"
#include "MDiagArray2.h"
#include "MatrixType.h"
#include "dNDArray.h"
#include "mx-defs.h"
#include "mx-op-decl.h"
Go to the source code of this file.
Classes | |
class | Matrix |
Functions | |
OCTAVE_API Matrix | Givens (double, double) |
OCTAVE_API Matrix | imag (const ComplexMatrix &a) |
OCTAVE_API Matrix | linspace (const ColumnVector &x1, const ColumnVector &x2, octave_idx_type n) |
OCTAVE_API Matrix | max (const Matrix &a, const Matrix &b) |
OCTAVE_API Matrix | max (const Matrix &m, double d) |
OCTAVE_API Matrix | max (double d, const Matrix &m) |
OCTAVE_API Matrix | min (const Matrix &a, const Matrix &b) |
OCTAVE_API Matrix | min (const Matrix &m, double d) |
OCTAVE_API Matrix | min (double d, const Matrix &m) |
OCTAVE_API boolMatrix | mx_el_and (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_and (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_and (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_eq (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_eq (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_eq (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_ge (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_ge (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_ge (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_gt (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_gt (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_gt (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_le (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_le (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_le (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_lt (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_lt (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_lt (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_ne (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_ne (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_ne (const Matrix &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_or (const double &, const Matrix &) |
OCTAVE_API boolMatrix | mx_el_or (const Matrix &, const double &) |
OCTAVE_API boolMatrix | mx_el_or (const Matrix &, const Matrix &) |
OCTAVE_API Matrix | operator* (const ColumnVector &a, const RowVector &b) |
Matrix | operator* (const double &x, const Matrix &y) |
OCTAVE_API Matrix | operator* (const Matrix &a, const Matrix &b) |
Matrix | operator* (const Matrix &x, const double &y) |
Matrix | operator*= (Matrix &x, const double &y) |
Matrix | operator+ (const double &x, const Matrix &y) |
Matrix | operator+ (const Matrix &x) |
Matrix | operator+ (const Matrix &x, const double &y) |
Matrix | operator+ (const Matrix &x, const Matrix &y) |
Matrix | operator+= (Matrix &x, const double &y) |
Matrix | operator+= (Matrix &x, const Matrix &y) |
Matrix | operator- (const double &x, const Matrix &y) |
Matrix | operator- (const Matrix &x) |
Matrix | operator- (const Matrix &x, const double &y) |
Matrix | operator- (const Matrix &x, const Matrix &y) |
Matrix | operator-= (Matrix &x, const double &y) |
Matrix | operator-= (Matrix &x, const Matrix &y) |
Matrix | operator/ (const double &x, const Matrix &y) |
Matrix | operator/ (const Matrix &x, const double &y) |
Matrix | operator/= (Matrix &x, const double &y) |
Matrix | product (const Matrix &x, const Matrix &y) |
Matrix | product_eq (Matrix &x, const Matrix &y) |
Matrix | quotient (const Matrix &x, const Matrix &y) |
Matrix | quotient_eq (Matrix &x, const Matrix &y) |
template<typename T > | |
void | read_int (std::istream &is, bool swap_bytes, T &val) |
OCTAVE_API Matrix | real (const ComplexMatrix &a) |
OCTAVE_API Matrix | Sylvester (const Matrix &, const Matrix &, const Matrix &) |
OCTAVE_API Matrix | xgemm (const Matrix &a, const Matrix &b, blas_trans_type transa=blas_no_trans, blas_trans_type transb=blas_no_trans) |
OCTAVE_API Matrix Givens | ( | double | x, |
double | y | ||
) |
Definition at line 2671 of file dMatrix.cc.
References Array< T >::elem(), F77_FUNC(), and x.
OCTAVE_API Matrix imag | ( | const ComplexMatrix & | a | ) |
Definition at line 130 of file dMatrix.cc.
Referenced by stack_complex_matrix().
OCTAVE_API Matrix linspace | ( | const ColumnVector & | x1, |
const ColumnVector & | x2, | ||
octave_idx_type | n | ||
) |
Definition at line 2995 of file dMatrix.cc.
References Array< T >::clear(), m, n, Array< T >::numel(), retval, and Array< T >::xelem().
Definition at line 2972 of file dMatrix.cc.
References Array< T >::columns(), EMPTY_RETURN_CHECK, octave::math::max(), and Array< T >::rows().
Definition at line 2952 of file dMatrix.cc.
References d, EMPTY_RETURN_CHECK, m, and octave::math::max().
Definition at line 2932 of file dMatrix.cc.
References d, EMPTY_RETURN_CHECK, m, and octave::math::max().
Referenced by norm1(), and Matrix::pseudo_inverse().
Definition at line 2908 of file dMatrix.cc.
References Array< T >::columns(), EMPTY_RETURN_CHECK, octave::math::min(), and Array< T >::rows().
Definition at line 2888 of file dMatrix.cc.
References d, EMPTY_RETURN_CHECK, m, and octave::math::min().
Definition at line 2868 of file dMatrix.cc.
References d, EMPTY_RETURN_CHECK, m, and octave::math::min().
Referenced by Matrix::pseudo_inverse().
OCTAVE_API boolMatrix mx_el_and | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3037 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_and | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3034 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_and | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3040 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_eq | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_eq | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_eq | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ge | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ge | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ge | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_gt | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_gt | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_gt | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_le | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_le | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_le | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_lt | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_lt | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_lt | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ne | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3036 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ne | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3033 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_ne | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3039 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_or | ( | const double & | s, |
const Matrix & | m | ||
) |
Definition at line 3037 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_or | ( | const Matrix & | m, |
const double & | s | ||
) |
Definition at line 3034 of file dMatrix.cc.
OCTAVE_API boolMatrix mx_el_or | ( | const Matrix & | m1, |
const Matrix & | m2 | ||
) |
Definition at line 3040 of file dMatrix.cc.
OCTAVE_API Matrix operator* | ( | const ColumnVector & | a, |
const RowVector & | b | ||
) |
Definition at line 2314 of file dMatrix.cc.
References Array< T >::data(), F77_XFCN, Array< T >::fortran_vec(), len, Array< T >::numel(), and retval.
Definition at line 2856 of file dMatrix.cc.
References xgemm().
void read_int | ( | std::istream & | is, |
bool | swap_bytes, | ||
T & | val | ||
) |
OCTAVE_API Matrix real | ( | const ComplexMatrix & | a | ) |
Definition at line 129 of file dMatrix.cc.
Referenced by stack_complex_matrix().
Definition at line 2688 of file dMatrix.cc.
References F77_XFCN, Array< T >::fortran_vec(), retval, Array< T >::rows(), scale(), octave::math::schur< T >::schur_matrix(), Matrix::transpose(), and octave::math::schur< T >::unitary_matrix().
OCTAVE_API Matrix xgemm | ( | const Matrix & | a, |
const Matrix & | b, | ||
blas_trans_type | transa = blas_no_trans , |
||
blas_trans_type | transb = blas_no_trans |
||
) |
Definition at line 2770 of file dMatrix.cc.
References blas_no_trans, Array< T >::cols(), Array< T >::data(), octave::err_nonconformant(), F77_FUNC(), F77_XFCN, Array< T >::fortran_vec(), get_blas_trans_arg(), retval, Array< T >::rows(), xddot(), and Array< T >::xelem().
Referenced by operator*().