aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Array/Random.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Array/Random.h')
-rw-r--r--Eigen/src/Array/Random.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/Eigen/src/Array/Random.h b/Eigen/src/Array/Random.h
index 15cc6ae7c..adadf99e3 100644
--- a/Eigen/src/Array/Random.h
+++ b/Eigen/src/Array/Random.h
@@ -34,7 +34,7 @@ struct ei_functor_traits<ei_scalar_random_op<Scalar> >
{ enum { Cost = 5 * NumTraits<Scalar>::MulCost, PacketAccess = false, IsRepeatable = false }; };
/** \array_module
- *
+ *
* \returns a random matrix expression
*
* The parameters \a rows and \a cols are the number of rows and of columns of
@@ -44,8 +44,6 @@ struct ei_functor_traits<ei_scalar_random_op<Scalar> >
* it is redundant to pass \a rows and \a cols as arguments, so Random() should be used
* instead.
*
- * \addexample RandomExample \label How to create a matrix with random coefficients
- *
* Example: \include MatrixBase_random_int_int.cpp
* Output: \verbinclude MatrixBase_random_int_int.out
*
@@ -63,7 +61,7 @@ MatrixBase<Derived>::Random(int rows, int cols)
}
/** \array_module
- *
+ *
* \returns a random vector expression
*
* The parameter \a size is the size of the returned vector.
@@ -92,7 +90,7 @@ MatrixBase<Derived>::Random(int size)
}
/** \array_module
- *
+ *
* \returns a fixed-size random matrix or vector expression
*
* This variant is only for fixed-size MatrixBase types. For dynamic-size types, you
@@ -115,7 +113,7 @@ MatrixBase<Derived>::Random()
}
/** \array_module
- *
+ *
* Sets all coefficients in this expression to random values.
*
* Example: \include MatrixBase_setRandom.cpp