OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nbCols
(Results
1 - 8
of
8
) sorted by null
/external/eigen/Eigen/src/Core/
DenseStorage.h
174
inline DenseStorage(DenseIndex, DenseIndex nbRows, DenseIndex
nbCols
) : m_rows(nbRows), m_cols(
nbCols
) {}
179
inline void conservativeResize(DenseIndex, DenseIndex nbRows, DenseIndex
nbCols
) { m_rows = nbRows; m_cols =
nbCols
; }
180
inline void resize(DenseIndex, DenseIndex nbRows, DenseIndex
nbCols
) { m_rows = nbRows; m_cols =
nbCols
; }
213
inline DenseStorage(DenseIndex, DenseIndex, DenseIndex
nbCols
) : m_cols(
nbCols
) {}
217
inline void conservativeResize(DenseIndex, DenseIndex, DenseIndex
nbCols
) { m_cols =
nbCols
; }
[
all
...]
Random.h
135
* \param
nbCols
the new number of columns
144
PlainObjectBase<Derived>::setRandom(Index nbRows, Index
nbCols
)
146
resize(nbRows,
nbCols
);
CwiseNullaryOp.h
57
CwiseNullaryOp(Index nbRows, Index
nbCols
, const NullaryOp& func = NullaryOp())
58
: m_rows(nbRows), m_cols(
nbCols
), m_functor(func)
62
&&
nbCols
>= 0
63
&& (ColsAtCompileTime == Dynamic || ColsAtCompileTime ==
nbCols
));
166
* The parameters \a nbRows and \a
nbCols
are the number of rows and of columns of
170
* it is redundant to pass \a nbRows and \a
nbCols
as arguments, so Zero() should be used
179
DenseBase<Derived>::Constant(Index nbRows, Index
nbCols
, const Scalar& value)
181
return DenseBase<Derived>::NullaryExpr(nbRows,
nbCols
, internal::scalar_constant_op<Scalar>(value));
357
* \param
nbCols
the new number of columns
367
PlainObjectBase<Derived>::setConstant(Index nbRows, Index
nbCols
, const Scalar& val
[
all
...]
MapBase.h
143
inline MapBase(PointerType dataPtr, Index nbRows, Index
nbCols
)
144
: m_data(dataPtr), m_rows(nbRows), m_cols(
nbCols
)
148
&&
nbCols
>= 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime ==
nbCols
)));
229
inline MapBase(PointerType dataPtr, Index nbRows, Index
nbCols
) : Base(dataPtr, nbRows,
nbCols
) {}
PlainObjectBase.h
235
EIGEN_STRONG_INLINE void resize(Index nbRows, Index
nbCols
)
238
&& EIGEN_IMPLIES(ColsAtCompileTime!=Dynamic,
nbCols
==ColsAtCompileTime)
240
&& EIGEN_IMPLIES(ColsAtCompileTime==Dynamic && MaxColsAtCompileTime!=Dynamic,
nbCols
<=MaxColsAtCompileTime)
241
&& nbRows>=0 &&
nbCols
>=0 && "Invalid sizes when resizing a matrix or array.");
242
internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(nbRows,
nbCols
);
244
Index size = nbRows*
nbCols
;
246
m_storage.resize(size, nbRows,
nbCols
);
249
internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(nbRows,
nbCols
);
250
m_storage.resize(nbRows*
nbCols
, nbRows,
nbCols
);
[
all
...]
ArrayWrapper.h
129
void resize(Index nbRows, Index
nbCols
) { m_expression.const_cast_derived().resize(nbRows,
nbCols
); }
246
void resize(Index nbRows, Index
nbCols
) { m_expression.const_cast_derived().resize(nbRows,
nbCols
); }
Map.h
161
* \param
nbCols
the number of columns of the matrix expression
164
inline Map(PointerArgType dataPtr, Index nbRows, Index
nbCols
, const StrideType& a_stride = StrideType())
165
: Base(cast_to_pointer_type(dataPtr), nbRows,
nbCols
), m_stride(a_stride)
DenseBase.h
227
void resize(Index nbRows, Index
nbCols
)
230
EIGEN_ONLY_USED_FOR_DEBUG(
nbCols
);
231
eigen_assert(nbRows == this->rows() &&
nbCols
== this->cols()
Completed in 2315 milliseconds