Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@768449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-04-25 02:01:23 +00:00
parent e5ae4a4127
commit 5548ffccb2
2 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ public class DenseFieldMatrix<T extends FieldElement<T>> extends AbstractFieldMa
*
* @exception IllegalArgumentException if <code>blockData</code> shape is
* inconsistent with block layout
* @see #createBlocksLayout(int, int)
* @see #createBlocksLayout(Field, int, int)
* @see #toBlocksLayout(T[][])
* @see #DenseFieldMatrix(T[][])
*/
@ -197,7 +197,7 @@ public class DenseFieldMatrix<T extends FieldElement<T>> extends AbstractFieldMa
* @return a new data array containing the same entries but in blocks layout
* @exception IllegalArgumentException if <code>rawData</code> is not rectangular
* (not all rows have the same length)
* @see #createBlocksLayout(int, int)
* @see #createBlocksLayout(Field, int, int)
* @see #DenseFieldMatrix(int, int, T[][], boolean)
*/
public static <T extends FieldElement<T>> T[][] toBlocksLayout(final T[][] rawData)

View File

@ -271,7 +271,7 @@ public interface FieldVector<T extends FieldElement<T>> extends Serializable {
* @param index index location of entry to be fetched
* @return vector entry at index
* @throws MatrixIndexException if the index is not valid
* @see #setEntry(int, T)
* @see #setEntry(int, FieldElement)
*/
T getEntry(int index)
throws MatrixIndexException;