Searched refs:nbRows (Results 1 - 8 of 8) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DDenseStorage.h174 inline DenseStorage(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) : m_rows(nbRows), m_cols(nbCols) {} argument
179 inline void conservativeResize(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) { m_rows = nbRows; m_cols = nbCols; } argument
180 inline void resize(DenseIndex, DenseIndex nbRows, DenseIndex nbCols) { m_rows = nbRows; m_cols = nbCols; } argument
194 inline DenseStorage(DenseIndex, DenseIndex nbRows, DenseIndex) : m_rows(nbRows) {} argument
198 inline void conservativeResize(DenseIndex, DenseIndex nbRows, DenseIndex) { m_rows = nbRows; } argument
199 resize(DenseIndex, DenseIndex nbRows, DenseIndex) argument
233 DenseStorage(DenseIndex size, DenseIndex nbRows, DenseIndex nbCols) argument
241 conservativeResize(DenseIndex size, DenseIndex nbRows, DenseIndex nbCols) argument
247 resize(DenseIndex size, DenseIndex nbRows, DenseIndex nbCols) argument
309 DenseStorage(DenseIndex size, DenseIndex nbRows, DenseIndex) argument
315 conservativeResize(DenseIndex size, DenseIndex nbRows, DenseIndex) argument
320 resize(DenseIndex size, DenseIndex nbRows, DenseIndex) argument
[all...]
H A DCwiseNullaryOp.h57 CwiseNullaryOp(Index nbRows, Index nbCols, const NullaryOp& func = NullaryOp()) argument
58 : m_rows(nbRows), m_cols(nbCols), m_functor(func)
60 eigen_assert(nbRows >= 0
61 && (RowsAtCompileTime == Dynamic || RowsAtCompileTime == nbRows)
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) argument
181 return DenseBase<Derived>::NullaryExpr(nbRows, nbCols, internal::scalar_constant_op<Scalar>(value));
356 * \param nbRows the new number of rows
367 PlainObjectBase<Derived>::setConstant(Index nbRows, Inde argument
428 Zero(Index nbRows, Index nbCols) argument
533 setZero(Index nbRows, Index nbCols) argument
557 Ones(Index nbRows, Index nbCols) argument
659 setOnes(Index nbRows, Index nbCols) argument
683 Identity(Index nbRows, Index nbCols) argument
788 setIdentity(Index nbRows, Index nbCols) argument
[all...]
H A DRandom.h134 * \param nbRows the new number of rows
144 PlainObjectBase<Derived>::setRandom(Index nbRows, Index nbCols) argument
146 resize(nbRows, nbCols);
H A DPlainObjectBase.h235 EIGEN_STRONG_INLINE void resize(Index nbRows, Index nbCols) argument
237 eigen_assert( EIGEN_IMPLIES(RowsAtCompileTime!=Dynamic,nbRows==RowsAtCompileTime)
239 && EIGEN_IMPLIES(RowsAtCompileTime==Dynamic && MaxRowsAtCompileTime!=Dynamic,nbRows<=MaxRowsAtCompileTime)
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, nbCol
302 resize(Index nbRows, NoChange_t) argument
342 conservativeResize(Index nbRows, Index nbCols) argument
354 conservativeResize(Index nbRows, NoChange_t) argument
440 PlainObjectBase(Index a_size, Index nbRows, Index nbCols) argument
625 _init2(Index nbRows, Index nbCols, typename internal::enable_if<Base::SizeAtCompileTime!=2,T0>::type* = 0) argument
[all...]
H A DMapBase.h143 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols) argument
144 : m_data(dataPtr), m_rows(nbRows), m_cols(nbCols)
147 || ( nbRows >= 0 && (RowsAtCompileTime == Dynamic || RowsAtCompileTime == nbRows)
229 inline MapBase(PointerType dataPtr, Index nbRows, Index nbCols) : Base(dataPtr, nbRows, nbCols) {} argument
H A DArrayWrapper.h129 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); } argument
246 void resize(Index nbRows, Index nbCols) { m_expression.const_cast_derived().resize(nbRows,nbCols); } argument
H A DMap.h160 * \param nbRows the number of rows of the matrix expression
164 inline Map(PointerArgType dataPtr, Index nbRows, Index nbCols, const StrideType& a_stride = StrideType()) argument
165 : Base(cast_to_pointer_type(dataPtr), nbRows, nbCols), m_stride(a_stride)
H A DDenseBase.h227 void resize(Index nbRows, Index nbCols) argument
229 EIGEN_ONLY_USED_FOR_DEBUG(nbRows);
231 eigen_assert(nbRows == this->rows() && nbCols == this->cols()

Completed in 213 milliseconds