template<typename _Scalar, int _Options>
class Eigen::SkylineMatrix< _Scalar, _Options >
The main skyline matrix class.
This class implements a skyline matrix using the very uncommon storage scheme.
- Parameters
-
| _Scalar | the scalar type, i.e. the type of the coefficients |
| _Options | Union of bit flags controlling the storage scheme. Currently the only possibility is RowMajor. The default is 0 which means column-major. |
|
| void | finalize () |
| |
| EIGEN_DONT_INLINE Scalar & | insert (Index row, Index col) |
| |
| Index | nonZeros () const |
| |
| void | reserve (Index reserveSize, Index reserveUpperSize, Index reserveLowerSize) |
| |
| void | resize (size_t rows, size_t cols) |
| |
| void | setZero () |
| |
| Scalar | sum () const |
| |
| | ~SkylineMatrix () |
| |
| EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
| |
| const internal::eval< SkylineMatrix< _Scalar, _Options >, IsSkyline >::type | eval () const |
| |
| Index | innerSize () const |
| |
| Index | nonZeros () const |
| |
| Index | outerSize () const |
| |
| EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
| |
| EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
| |