Fixed Javadoc.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1104600 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-05-17 22:19:54 +00:00
parent 695dc3bdcc
commit dbb142bc5a
3 changed files with 9 additions and 14 deletions

View File

@ -241,20 +241,16 @@ public interface FieldVector<T extends FieldElement<T>> {
/**
* Compute the outer product.
* @param v vector with which outer product should be computed
* @return the square matrix outer product between instance and v
* @exception IllegalArgumentException if v is not the same size as this
* @return the matrix outer product between instance and v
*/
FieldMatrix<T> outerProduct(FieldVector<T> v)
throws IllegalArgumentException;
FieldMatrix<T> outerProduct(FieldVector<T> v);
/**
* Compute the outer product.
* @param v vector with which outer product should be computed
* @return the square matrix outer product between instance and v
* @exception IllegalArgumentException if v is not the same size as this
* @return the matrix outer product between instance and v
*/
FieldMatrix<T> outerProduct(T[] v)
throws IllegalArgumentException;
FieldMatrix<T> outerProduct(T[] v);
/**
* Returns the entry in the specified index.

View File

@ -480,18 +480,14 @@ public interface RealVector {
/**
* Compute the outer product.
* @param v vector with which outer product should be computed
* @return the square matrix outer product between instance and v
* @throws org.apache.commons.math.exception.DimensionMismatchException
* if {@code v} is not the same size as this vector.
* @return the matrix outer product between instance and v
*/
RealMatrix outerProduct(RealVector v);
/**
* Compute the outer product.
* @param v vector with which outer product should be computed
* @return the square matrix outer product between instance and v
* @throws org.apache.commons.math.exception.DimensionMismatchException
* if {@code v} is not the same size as this vector.
* @return the matrix outer product between instance and v
*/
RealMatrix outerProduct(double[] v);

View File

@ -52,6 +52,9 @@ The <action> type attribute can be add,update,fix,remove.
If the output is not quite correct, check for invisible trailing spaces!
-->
<release version="3.0" date="TBD" description="TBD">
<action dev="erans" type="fix" issue="MATH-574">
Allow outer product of vectors of different sizes.
</action>
<action dev="luc" type="add" issue="MATH-576">
A complete generic implementation of Binary Space Partitioning Trees (BSP trees)
has been added. A few specializations of this implementation are also provided