#include <vector>
#include "lo-error.h"
#include "SparseCmplxQR.h"
#include "oct-locbuf.h"
Defines | |
#define | OCTAVE_C99_COMPLEX(buf, n) OCTAVE_LOCAL_BUFFER (cs_complex_t, buf, (n)); |
#define | OCTAVE_C99_ZERO cs_complex_t(0., 0.); |
#define | OCTAVE_C99_ONE cs_complex_t(1., 0.); |
Functions | |
ComplexMatrix | qrsolve (const SparseComplexMatrix &a, const Matrix &b, octave_idx_type &info) |
SparseComplexMatrix | qrsolve (const SparseComplexMatrix &a, const SparseMatrix &b, octave_idx_type &info) |
ComplexMatrix | qrsolve (const SparseComplexMatrix &a, const ComplexMatrix &b, octave_idx_type &info) |
SparseComplexMatrix | qrsolve (const SparseComplexMatrix &a, const SparseComplexMatrix &b, octave_idx_type &info) |
ComplexMatrix | qrsolve (const SparseComplexMatrix &a, const MArray2< double > &b, octave_idx_type &info) |
ComplexMatrix | qrsolve (const SparseComplexMatrix &a, const MArray2< Complex > &b, octave_idx_type &info) |
#define OCTAVE_C99_COMPLEX | ( | buf, | |||
n | ) | OCTAVE_LOCAL_BUFFER (cs_complex_t, buf, (n)); |
#define OCTAVE_C99_ONE cs_complex_t(1., 0.); |
#define OCTAVE_C99_ZERO cs_complex_t(0., 0.); |
ComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const MArray2< Complex > & | b, | |||
octave_idx_type & | info | |||
) |
ComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const MArray2< double > & | b, | |||
octave_idx_type & | info | |||
) |
SparseComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const SparseComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) |
ComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const ComplexMatrix & | b, | |||
octave_idx_type & | info | |||
) |
SparseComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const SparseMatrix & | b, | |||
octave_idx_type & | info | |||
) |
ComplexMatrix qrsolve | ( | const SparseComplexMatrix & | a, | |
const Matrix & | b, | |||
octave_idx_type & | info | |||
) |