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:
parent
e5ae4a4127
commit
5548ffccb2
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue