#include "SparseQR.h"
Classes | |
class | SparseQR_rep |
Public Member Functions | |
SparseQR (void) | |
SparseQR (const SparseMatrix &a, int order=0) | |
SparseQR (const SparseQR &a) | |
~SparseQR (void) | |
Matrix | C (const Matrix &b) const |
bool | ok (void) const |
SparseQR & | operator= (const SparseQR &a) |
ColumnVector | P (void) const |
ColumnVector | Pinv (void) const |
Matrix | Q (void) const |
SparseMatrix | R (const bool econ=false) const |
SparseMatrix | V (void) const |
Private Attributes | |
SparseQR_rep * | rep |
Friends | |
Matrix | qrsolve (const SparseMatrix &a, const Matrix &b, octave_idx_type &info) |
SparseComplexMatrix | qrsolve (const SparseMatrix &a, const SparseComplexMatrix &b, octave_idx_type &info) |
ComplexMatrix | qrsolve (const SparseMatrix &a, const ComplexMatrix &b, octave_idx_type &info) |
SparseMatrix | qrsolve (const SparseMatrix &a, const SparseMatrix &b, octave_idx_type &info) |
Definition at line 40 of file SparseQR.h.
SparseQR::SparseQR | ( | void | ) | [inline] |
Definition at line 92 of file SparseQR.h.
SparseQR::SparseQR | ( | const SparseMatrix & | a, | |
int | order = 0 | |||
) | [inline] |
Definition at line 94 of file SparseQR.h.
SparseQR::SparseQR | ( | const SparseQR & | a | ) | [inline] |
Definition at line 97 of file SparseQR.h.
References SparseQR::SparseQR_rep::count.
SparseQR::~SparseQR | ( | void | ) | [inline] |
Definition at line 99 of file SparseQR.h.
References SparseQR::SparseQR_rep::count.
Definition at line 128 of file SparseQR.h.
References SparseQR::SparseQR_rep::C().
bool SparseQR::ok | ( | void | ) | const [inline] |
Definition at line 118 of file SparseQR.h.
References SparseQR::SparseQR_rep::ok().
Referenced by qrsolve().
Definition at line 105 of file SparseQR.h.
References SparseQR::SparseQR_rep::count, and rep.
ColumnVector SparseQR::P | ( | void | ) | const [inline] |
Definition at line 124 of file SparseQR.h.
References SparseQR::SparseQR_rep::P().
ColumnVector SparseQR::Pinv | ( | void | ) | const [inline] |
Definition at line 122 of file SparseQR.h.
References SparseQR::SparseQR_rep::P().
Referenced by qrsolve().
Matrix SparseQR::Q | ( | void | ) | const [inline] |
Definition at line 130 of file SparseQR.h.
References SparseQR::SparseQR_rep::Q().
Referenced by qrsolve().
SparseMatrix SparseQR::R | ( | const bool | econ = false |
) | const [inline] |
Definition at line 126 of file SparseQR.h.
References SparseQR::SparseQR_rep::R().
SparseMatrix SparseQR::V | ( | void | ) | const [inline] |
Definition at line 120 of file SparseQR.h.
References SparseQR::SparseQR_rep::V().
Matrix qrsolve | ( | const SparseMatrix & | a, | |
const Matrix & | b, | |||
octave_idx_type & | info | |||
) | [friend] |
Definition at line 274 of file SparseQR.cc.
Referenced by qrsolve().
SparseComplexMatrix qrsolve | ( | const SparseMatrix & | a, | |
const SparseComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) | [friend] |
Definition at line 696 of file SparseQR.cc.
ComplexMatrix qrsolve | ( | const SparseMatrix & | a, | |
const ComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) | [friend] |
Definition at line 529 of file SparseQR.cc.
SparseMatrix qrsolve | ( | const SparseMatrix & | a, | |
const SparseMatrix & | b, | |||
octave_idx_type & | info | |||
) | [friend] |
Definition at line 378 of file SparseQR.cc.
SparseQR_rep* SparseQR::rep [private] |
Definition at line 88 of file SparseQR.h.
Referenced by operator=().