📄 bmd.h
字号:
// LAPACK++ (V. 1.1)// (C) 1992-1996 All Rights Reserved.#ifndef _LA_BAND_MAT_DOUBLE_H_#define _LA_BAND_MAT_DOUBLE_H_#ifndef _LA_GEN_MAT_DOUBLE_H_#include LA_GEN_MAT_DOUBLE_H#endif#define BOUNDS_CHK//#define SPARSE_CHK#ifdef LA_NO_BOUNDS_CHECK#undef BOUNDS_CHK#endif#ifdef LA_NO_SPARSE_CHECK#undef SPARSE_CHK#endifclass LaBandMatDouble{ LaGenMatDouble data_; // internal storage. int N_; // N_ is (NxN) int kl_; // kl_ = # subdiags int ku_; // ku_ = # superdiags static double outofbounds_; // value returned if index is out of range. static int debug_; // print debug info. static int *info_; // print matrix info only, not values // originally 0, set to 1, and then // reset to 0 after use.public: // constructors inline LaBandMatDouble(); inline LaBandMatDouble(int,int,int); inline LaBandMatDouble(const LaBandMatDouble &); // operators LaBandMatDouble& operator=(double); inline LaBandMatDouble& operator=(const LaBandMatDouble&); double& operator()(int,int); double& operator()(int,int) const; friend ostream& operator<<(ostream &, const LaBandMatDouble &); // member functions inline int size(int) const; // submatrix size inline int inc(int d) const; // explicit increment inline int gdim(int d) const; // global dimensions inline LaBandMatDouble& ref(LaBandMatDouble &); LaBandMatDouble copy(const LaBandMatDouble &); inline double* addr() const { // return address of matrix. return data_.addr();} inline int ref_count() const { // return ref_count of matrix. return data_.ref_count();} inline LaIndex index(int d) const { // return indices of matrix. return data_.index(d);} inline int superdiags() { // return # of superdiags of matrix. return (ku_);} inline int superdiags() const { // return # of superdiags of const matrix. return (ku_);} inline int subdiags() { // return # of subdiags of matrix. return (kl_);} inline int subdiags() const { // return # of subdiags of const matrix. return (kl_);} inline int shallow() const { // return shallow flag. return data_.shallow();} inline int debug() const { // return debug flag. return debug_;} inline int debug(int d) { // set debug flag for lagenmat. return debug_ = d;} inline LaBandMatDouble& resize(const LaBandMatDouble&); inline const LaBandMatDouble& info() const { int *t = info_; *t = 1; return *this;}; inline LaBandMatDouble print_data() const { cout << data_; return *this;} // destructor inline ~LaBandMatDouble();}; // constructors inline LaBandMatDouble::LaBandMatDouble() : data_(){ N_ = kl_ = ku_ = 0;}inline LaBandMatDouble::LaBandMatDouble(int n,int l,int u) : data_(2*l+u+1,n){ N_ = n; kl_ = l; ku_ = u;}inline LaBandMatDouble::LaBandMatDouble(const LaBandMatDouble &A){ data_.copy(A.data_); N_ = A.N_; kl_ = A.kl_; ku_ = A.ku_;} // destructor inline LaBandMatDouble::~LaBandMatDouble(){} // member functions and operatorsinline LaBandMatDouble& LaBandMatDouble::ref(LaBandMatDouble &ob){ data_.ref(ob.data_); N_ = ob.N_; kl_ = ob.kl_; ku_ = ob.ku_; return *this;}inline LaBandMatDouble& LaBandMatDouble::resize(const LaBandMatDouble &ob){ data_.resize(ob.data_); return *this;}inline LaBandMatDouble& LaBandMatDouble::operator=(const LaBandMatDouble &B){ data_ = B.data_; N_ = B.N_; kl_ = B.kl_; ku_ = B.ku_; return *this;}inline int LaBandMatDouble::size(int d) const{ return(data_.size(d));}inline int LaBandMatDouble::inc(int d) const{ return(data_.inc(d));}inline int LaBandMatDouble::gdim(int d) const{ return(data_.gdim(d));}#endif // _LA_BAND_MAT_DOUBLE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -