mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Various fixes in:
- vector to vector assign - PartialRedux - Vectorization criteria of Product - returned type of normalized - SSE integer mul
This commit is contained in:
@@ -340,15 +340,15 @@ template<typename Derived> class MatrixBase
|
||||
static const CwiseNullaryOp<ei_scalar_constant_op<Scalar>,Derived>
|
||||
constant(const Scalar& value);
|
||||
|
||||
template<typename CustomZeroaryOp>
|
||||
static const CwiseNullaryOp<CustomZeroaryOp, Derived>
|
||||
cwiseCreate(int rows, int cols, const CustomZeroaryOp& func);
|
||||
template<typename CustomZeroaryOp>
|
||||
static const CwiseNullaryOp<CustomZeroaryOp, Derived>
|
||||
cwiseCreate(int size, const CustomZeroaryOp& func);
|
||||
template<typename CustomZeroaryOp>
|
||||
static const CwiseNullaryOp<CustomZeroaryOp, Derived>
|
||||
cwiseCreate(const CustomZeroaryOp& func);
|
||||
template<typename CustomNullaryOp>
|
||||
static const CwiseNullaryOp<CustomNullaryOp, Derived>
|
||||
create(int rows, int cols, const CustomNullaryOp& func);
|
||||
template<typename CustomNullaryOp>
|
||||
static const CwiseNullaryOp<CustomNullaryOp, Derived>
|
||||
create(int size, const CustomNullaryOp& func);
|
||||
template<typename CustomNullaryOp>
|
||||
static const CwiseNullaryOp<CustomNullaryOp, Derived>
|
||||
create(const CustomNullaryOp& func);
|
||||
|
||||
static const CwiseNullaryOp<ei_scalar_random_op<Scalar>,Derived> random(int rows, int cols);
|
||||
static const CwiseNullaryOp<ei_scalar_random_op<Scalar>,Derived> random(int size);
|
||||
|
||||
Reference in New Issue
Block a user