documentation

release/4.3a0
Chris Beall 2013-05-08 20:10:49 +00:00
parent 923dd6a315
commit 7ad3de6bc0
1 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ public:
/** /**
* Create vector initialized to a constant value * Create vector initialized to a constant value
* @param constant value * @param value constant value
*/ */
inline static FixedVector repeat(double value) { inline static FixedVector repeat(double value) {
return FixedVector(Base::Constant(value)); return FixedVector(Base::Constant(value));
@ -73,7 +73,7 @@ public:
/** /**
* Create basis vector of * Create basis vector of
* with a constant in spot i * 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 * @param value is the value to insert into the vector
* @return delta vector * @return delta vector
*/ */
@ -84,7 +84,7 @@ public:
/** /**
* Create basis vector, * Create basis vector,
* with one in spot i * with one in spot i
* @param index of the one * @param i index of the one
* @return basis vector * @return basis vector
*/ */
inline static FixedVector basis(size_t i) { return FixedVector(Base::Unit(i)); } inline static FixedVector basis(size_t i) { return FixedVector(Base::Unit(i)); }