From 7ad3de6bc02a9f8a2700d0df3649bcc6f750b9f5 Mon Sep 17 00:00:00 2001 From: Chris Beall Date: Wed, 8 May 2013 20:10:49 +0000 Subject: [PATCH] documentation --- gtsam_unstable/base/FixedVector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtsam_unstable/base/FixedVector.h b/gtsam_unstable/base/FixedVector.h index 487782843..53a9190ce 100644 --- a/gtsam_unstable/base/FixedVector.h +++ b/gtsam_unstable/base/FixedVector.h @@ -64,7 +64,7 @@ public: /** * Create vector initialized to a constant value - * @param constant value + * @param value constant value */ inline static FixedVector repeat(double value) { return FixedVector(Base::Constant(value)); @@ -73,7 +73,7 @@ public: /** * Create basis vector of * with a constant in spot i - * @param index of the one + * @param i index of the one * @param value is the value to insert into the vector * @return delta vector */ @@ -84,7 +84,7 @@ public: /** * Create basis vector, * with one in spot i - * @param index of the one + * @param i index of the one * @return basis vector */ inline static FixedVector basis(size_t i) { return FixedVector(Base::Unit(i)); }