#include <dSparse.h>
Inherits MSparse< double >.
typedef bool(* SparseMatrix::bmapper)(double) |
typedef Complex(* SparseMatrix::cmapper)(const Complex &) |
typedef double(* SparseMatrix::dmapper)(double) |
typedef void(* SparseMatrix::solve_singularity_handler)(double rcond) |
SparseMatrix::SparseMatrix | ( | void | ) | [inline] |
SparseMatrix::SparseMatrix | ( | octave_idx_type | r, | |
octave_idx_type | c | |||
) | [inline] |
SparseMatrix::SparseMatrix | ( | const dim_vector & | dv, | |
octave_idx_type | nz = 0 | |||
) | [inline] |
SparseMatrix::SparseMatrix | ( | octave_idx_type | r, | |
octave_idx_type | c, | |||
double | val | |||
) | [inline, explicit] |
SparseMatrix::SparseMatrix | ( | const SparseMatrix & | a | ) | [inline] |
SparseMatrix::SparseMatrix | ( | const SparseMatrix & | a, | |
const dim_vector & | dv | |||
) | [inline] |
F77_RET_T const octave_idx_type double Complex Complex const octave_idx_type octave_idx_type &F77_RET_T const octave_idx_type Complex Complex Complex Complex const octave_idx_type octave_idx_type & SparseMatrix::SparseMatrix | ( | const SparseBoolMatrix & | a | ) | [explicit] |
SparseMatrix::SparseMatrix | ( | const Array< double > | a, | |
const Array< octave_idx_type > & | r, | |||
const Array< octave_idx_type > & | c, | |||
octave_idx_type | nr = -1 , |
|||
octave_idx_type | nc = -1 , |
|||
bool | sum_terms = true | |||
) | [inline, explicit] |
SparseMatrix::SparseMatrix | ( | const Array< double > | a, | |
const Array< double > & | r, | |||
const Array< double > & | c, | |||
octave_idx_type | nr = -1 , |
|||
octave_idx_type | nc = -1 , |
|||
bool | sum_terms = true | |||
) | [inline, explicit] |
SparseMatrix::SparseMatrix | ( | const DiagMatrix & | a | ) | [explicit] |
SparseMatrix::SparseMatrix | ( | const PermMatrix & | a | ) | [explicit] |
SparseMatrix::SparseMatrix | ( | octave_idx_type | r, | |
octave_idx_type | c, | |||
octave_idx_type | num_nz | |||
) | [inline] |
SparseMatrix SparseMatrix::abs | ( | void | ) | const |
SparseBoolMatrix SparseMatrix::all | ( | int | dim = -1 |
) | const |
bool SparseMatrix::all_elements_are_int_or_inf_or_nan | ( | void | ) | const |
bool SparseMatrix::all_elements_are_zero | ( | void | ) | const |
SparseBoolMatrix SparseMatrix::any | ( | int | dim = -1 |
) | const |
bool SparseMatrix::any_element_is_inf_or_nan | ( | void | ) | const |
bool SparseMatrix::any_element_is_nan | ( | void | ) | const |
ColumnVector SparseMatrix::column | ( | octave_idx_type | i | ) | const |
SparseComplexMatrix SparseMatrix::concat | ( | const SparseComplexMatrix & | rb, | |
const Array< octave_idx_type > & | ra_idx | |||
) |
SparseMatrix SparseMatrix::concat | ( | const SparseMatrix & | rb, | |
const Array< octave_idx_type > & | ra_idx | |||
) |
SparseMatrix SparseMatrix::cumprod | ( | int | dim = -1 |
) | const |
SparseMatrix SparseMatrix::cumsum | ( | int | dim = -1 |
) | const |
DET SparseMatrix::determinant | ( | octave_idx_type & | info, | |
double & | rcond, | |||
int | calc_cond = 1 | |||
) | const |
DET SparseMatrix::determinant | ( | octave_idx_type & | info | ) | const |
DET SparseMatrix::determinant | ( | void | ) | const |
SparseMatrix SparseMatrix::diag | ( | octave_idx_type | k = 0 |
) | const |
Reimplemented from MSparse< double >.
SparseMatrix SparseMatrix::hermitian | ( | void | ) | const [inline] |
SparseMatrix SparseMatrix::index | ( | Array< idx_vector > & | ra_idx, | |
int | resize_ok | |||
) | const |
Reimplemented from MSparse< double >.
SparseMatrix SparseMatrix::index | ( | idx_vector & | i, | |
idx_vector & | j, | |||
int | resize_ok | |||
) | const |
Reimplemented from MSparse< double >.
SparseMatrix SparseMatrix::index | ( | idx_vector & | i, | |
int | resize_ok | |||
) | const |
Reimplemented from MSparse< double >.
SparseMatrix & SparseMatrix::insert | ( | const SparseMatrix & | a, | |
const Array< octave_idx_type > & | indx | |||
) |
SparseMatrix & SparseMatrix::insert | ( | const SparseMatrix & | a, | |
octave_idx_type | r, | |||
octave_idx_type | c | |||
) |
SparseMatrix SparseMatrix::inverse | ( | MatrixType & | mattype, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
int | force = 0 , |
|||
int | calc_cond = 1 | |||
) | const |
SparseMatrix SparseMatrix::inverse | ( | MatrixType & | mattype, | |
octave_idx_type & | info | |||
) | const |
SparseMatrix SparseMatrix::inverse | ( | MatrixType & | mattype | ) | const |
SparseMatrix SparseMatrix::inverse | ( | void | ) | const |
SparseMatrix SparseMatrix::ipermute | ( | const Array< octave_idx_type > & | vec | ) | const |
Reimplemented from MSparse< double >.
bool SparseMatrix::is_symmetric | ( | void | ) | const |
SparseBoolMatrix SparseMatrix::map | ( | bmapper | fcn | ) | const |
SparseComplexMatrix SparseMatrix::map | ( | cmapper | fcn | ) | const |
SparseMatrix SparseMatrix::map | ( | dmapper | fcn | ) | const |
Matrix SparseMatrix::matrix_value | ( | void | ) | const |
SparseMatrix SparseMatrix::max | ( | Array2< octave_idx_type > & | index, | |
int | dim = 0 | |||
) | const |
SparseMatrix SparseMatrix::max | ( | int | dim = 0 |
) | const |
SparseMatrix SparseMatrix::min | ( | Array2< octave_idx_type > & | index, | |
int | dim = 0 | |||
) | const |
SparseMatrix SparseMatrix::min | ( | int | dim = 0 |
) | const |
SparseBoolMatrix SparseMatrix::operator! | ( | void | ) | const |
bool SparseMatrix::operator!= | ( | const SparseMatrix & | a | ) | const |
SparseMatrix& SparseMatrix::operator= | ( | const SparseMatrix & | a | ) | [inline] |
bool SparseMatrix::operator== | ( | const SparseMatrix & | a | ) | const |
SparseMatrix SparseMatrix::permute | ( | const Array< octave_idx_type > & | vec, | |
bool | inv = false | |||
) | const |
Reimplemented from MSparse< double >.
SparseMatrix SparseMatrix::prod | ( | int | dim = -1 |
) | const |
SparseMatrix SparseMatrix::reshape | ( | const dim_vector & | new_dims | ) | const |
Reimplemented from MSparse< double >.
RowVector SparseMatrix::row | ( | octave_idx_type | i | ) | const |
ComplexColumnVector SparseMatrix::solve | ( | const ComplexColumnVector & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | const ComplexColumnVector & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | const ComplexColumnVector & | b, | |
octave_idx_type & | info | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | const ComplexColumnVector & | b | ) | const |
ColumnVector SparseMatrix::solve | ( | const ColumnVector & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
ColumnVector SparseMatrix::solve | ( | const ColumnVector & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ColumnVector SparseMatrix::solve | ( | const ColumnVector & | b, | |
octave_idx_type & | info | |||
) | const |
ColumnVector SparseMatrix::solve | ( | const ColumnVector & | b | ) | const |
SparseComplexMatrix SparseMatrix::solve | ( | const SparseComplexMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | const SparseComplexMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | const SparseComplexMatrix & | b, | |
octave_idx_type & | info | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | const SparseComplexMatrix & | b | ) | const |
SparseMatrix SparseMatrix::solve | ( | const SparseMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | const SparseMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | const SparseMatrix & | b, | |
octave_idx_type & | info | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | const SparseMatrix & | b | ) | const |
ComplexMatrix SparseMatrix::solve | ( | const ComplexMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | const ComplexMatrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | const ComplexMatrix & | b, | |
octave_idx_type & | info | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | const ComplexMatrix & | b | ) | const |
Matrix SparseMatrix::solve | ( | const Matrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
Matrix SparseMatrix::solve | ( | const Matrix & | b, | |
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
Matrix SparseMatrix::solve | ( | const Matrix & | b, | |
octave_idx_type & | info | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexColumnVector & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexColumnVector & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexColumnVector & | b, | |||
octave_idx_type & | info | |||
) | const |
ComplexColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexColumnVector & | b | |||
) | const |
ColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ColumnVector & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler | |||
) | const |
ColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ColumnVector & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ColumnVector & | b, | |||
octave_idx_type & | info | |||
) | const |
ColumnVector SparseMatrix::solve | ( | MatrixType & | typ, | |
const ColumnVector & | b | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseComplexMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler, | |||
bool | singular_fallabck = true | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseComplexMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) | const |
SparseComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseComplexMatrix & | b | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler, | |||
bool | singular_fallback = true | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseMatrix & | b, | |||
octave_idx_type & | info | |||
) | const |
SparseMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const SparseMatrix & | b | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler, | |||
bool | singular_fallback = true | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexMatrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) | const |
ComplexMatrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const ComplexMatrix & | b | |||
) | const |
Matrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const Matrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond, | |||
solve_singularity_handler | sing_handler, | |||
bool | singular_fallback = true | |||
) | const |
Matrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const Matrix & | b, | |||
octave_idx_type & | info, | |||
double & | rcond | |||
) | const |
Matrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const Matrix & | b, | |||
octave_idx_type & | info | |||
) | const |
Matrix SparseMatrix::solve | ( | MatrixType & | typ, | |
const Matrix & | b | |||
) | const |
SparseMatrix SparseMatrix::squeeze | ( | void | ) | const |
Reimplemented from MSparse< double >.
SparseMatrix SparseMatrix::sum | ( | int | dim = -1 |
) | const |
SparseMatrix SparseMatrix::sumsq | ( | int | dim = -1 |
) | const |
bool SparseMatrix::too_large_for_float | ( | void | ) | const |
SparseMatrix SparseMatrix::transpose | ( | void | ) | const [inline] |
Reimplemented from MSparse< double >.
OCTAVE_API SparseMatrix atan2 | ( | const SparseMatrix & | x, | |
const SparseMatrix & | y | |||
) | [friend] |
OCTAVE_API SparseMatrix atan2 | ( | const SparseMatrix & | x, | |
const double & | y | |||
) | [friend] |
OCTAVE_API SparseMatrix atan2 | ( | const double & | x, | |
const SparseMatrix & | y | |||
) | [friend] |
OCTAVE_API SparseMatrix imag | ( | const SparseComplexMatrix & | a | ) | [friend] |
OCTAVE_API std::ostream& operator<< | ( | std::ostream & | os, | |
const SparseMatrix & | a | |||
) | [friend] |
OCTAVE_API std::istream& operator>> | ( | std::istream & | is, | |
SparseMatrix & | a | |||
) | [friend] |
OCTAVE_API SparseMatrix real | ( | const SparseComplexMatrix & | a | ) | [friend] |