mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Improve the "map" API and corresponding Matrix constructors
This commit is contained in:
@@ -95,8 +95,9 @@ template<typename Scalar, typename Derived> class MatrixBase
|
||||
diagonal(const OtherDerived& coeffs);
|
||||
DiagonalCoeffs<Derived> diagonal() const;
|
||||
|
||||
static Map<Derived>
|
||||
map(const Scalar* array, int rows = RowsAtCompileTime, int cols = ColsAtCompileTime);
|
||||
static Map<Derived> map(const Scalar* array, int rows, int cols);
|
||||
static Map<Derived> map(const Scalar* array, int size);
|
||||
static Map<Derived> map(const Scalar* array);
|
||||
|
||||
template<typename OtherDerived>
|
||||
bool isApprox(
|
||||
|
||||
Reference in New Issue
Block a user