mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix comment typos, doubled words, grammar errors, and copy-paste mistakes
libeigen/eigen!2173 Closes #3034 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
This commit is contained in:
@@ -990,7 +990,7 @@ EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename ConstNColsBlockXpr<N>::Type middl
|
||||
/// Example: \include MatrixBase_block_int_int.cpp
|
||||
/// Output: \verbinclude MatrixBase_block_int_int.out
|
||||
///
|
||||
/// \note The usage of of this overload is discouraged from %Eigen 3.4, better used the generic
|
||||
/// \note The usage of this overload is discouraged from %Eigen 3.4, better use the generic
|
||||
/// block(Index,Index,NRowsType,NColsType), here is the one-to-one equivalence:
|
||||
/// \code
|
||||
/// mat.template block<NRows,NCols>(i,j) <--> mat.block(i,j,fix<NRows>,fix<NCols>)
|
||||
@@ -1032,7 +1032,7 @@ EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const typename ConstFixedBlockXpr<NRows, N
|
||||
/// Example: \include MatrixBase_template_int_int_block_int_int_int_int.cpp
|
||||
/// Output: \verbinclude MatrixBase_template_int_int_block_int_int_int_int.out
|
||||
///
|
||||
/// \note The usage of of this overload is discouraged from %Eigen 3.4, better used the generic
|
||||
/// \note The usage of this overload is discouraged from %Eigen 3.4, better use the generic
|
||||
/// block(Index,Index,NRowsType,NColsType), here is the one-to-one complete equivalence:
|
||||
/// \code
|
||||
/// mat.template block<NRows,NCols>(i,j,rows,cols) <--> mat.block(i,j,fix<NRows>(rows),fix<NCols>(cols))
|
||||
|
||||
Reference in New Issue
Block a user