|
🛰️航天仿真算法库 SpaceAST 0.0.1
|
Public 成员函数 | |
| Matrix (const Matrix &other) | |
| Matrix (Matrix &&other) | |
| Matrix & | operator= (const Matrix &other) |
| Matrix & | operator= (Matrix &&other) |
| void | resize (size_t row, size_t col) |
| void | setZero () |
| size_t | size () const |
| size_t | row () const |
| size_t | col () const |
| _Scalar * | data () const |
| _Scalar & | operator() (size_t row, size_t col) |
| _Scalar | operator() (size_t row, size_t col) const |
Protected 属性 | |
| size_t | m_row |
| size_t | m_col |
| _Scalar * | m_data |