removed remaining references to DenseXxx{Matrix/Vector}
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@783741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
30ab6c8c3d
commit
496d85cf17
|
@ -31,7 +31,7 @@ import org.apache.commons.math.MathRuntimeException;
|
|||
* process matrices with sizes similar enough to have the same power of two
|
||||
* number of tiles in all three matrices A, B and C such that C = A*B. These
|
||||
* parts have not been fixed since the performance gain with respect to
|
||||
* DenseRealMatrix are not very important, and the numerical stability is not
|
||||
* BlockRealMatrix are not very important, and the numerical stability is not
|
||||
* good. This may well be due to a bad implementation. This code has been put
|
||||
* in the experimental part for the record, putting it into production would
|
||||
* require solving all these issues.
|
||||
|
@ -136,7 +136,7 @@ public class RecursiveLayoutRealMatrix extends AbstractRealMatrix implements Ser
|
|||
*
|
||||
* @exception IllegalArgumentException if <code>rawData</code> shape is
|
||||
* inconsistent with tile layout
|
||||
* @see #DenseRealMatrix(int, int, double[][], boolean)
|
||||
* @see #RecursiveLayoutRealMatrix(int, int, double[][], boolean)
|
||||
*/
|
||||
public RecursiveLayoutRealMatrix(final double[][] rawData)
|
||||
throws IllegalArgumentException {
|
||||
|
|
|
@ -194,7 +194,7 @@ public class BlockFieldMatrix<T extends FieldElement<T>> extends AbstractFieldMa
|
|||
* <p>
|
||||
* This method creates an array in blocks layout from an input array in raw layout.
|
||||
* It can be used to provide the array argument of the {@link
|
||||
* BlockFieldMatrix#DenseFieldMatrix(int, int, FieldElement[][], boolean)}
|
||||
* #BlockFieldMatrix(int, int, FieldElement[][], boolean)}
|
||||
* constructor.
|
||||
* </p>
|
||||
* @param <T> the type of the field elements
|
||||
|
@ -255,7 +255,7 @@ public class BlockFieldMatrix<T extends FieldElement<T>> extends AbstractFieldMa
|
|||
* Create a data array in blocks layout.
|
||||
* <p>
|
||||
* This method can be used to create the array argument of the {@link
|
||||
* BlockFieldMatrix#DenseFieldMatrix(int, int, FieldElement[][], boolean)}
|
||||
* #BlockFieldMatrix(int, int, FieldElement[][], boolean)}
|
||||
* constructor.
|
||||
* </p>
|
||||
* @param <T> the type of the field elements
|
||||
|
|
|
@ -191,7 +191,7 @@ public class BlockRealMatrix extends AbstractRealMatrix implements Serializable
|
|||
* <p>
|
||||
* This method creates an array in blocks layout from an input array in raw layout.
|
||||
* It can be used to provide the array argument of the {@link
|
||||
* BlockRealMatrix#DenseRealMatrix(int, int, double[][], boolean)} constructor.
|
||||
* #BlockRealMatrix(int, int, double[][], boolean)} constructor.
|
||||
* </p>
|
||||
* @param rawData data array in raw layout
|
||||
* @return a new data array containing the same entries but in blocks layout
|
||||
|
@ -249,7 +249,7 @@ public class BlockRealMatrix extends AbstractRealMatrix implements Serializable
|
|||
* Create a data array in blocks layout.
|
||||
* <p>
|
||||
* This method can be used to create the array argument of the {@link
|
||||
* BlockRealMatrix#DenseRealMatrix(int, int, double[][], boolean)} constructor.
|
||||
* #BlockRealMatrix(int, int, double[][], boolean)} constructor.
|
||||
* </p>
|
||||
* @param rows the number of rows in the new matrix
|
||||
* @param columns the number of columns in the new matrix
|
||||
|
|
|
@ -285,7 +285,7 @@ public final class BlockRealMatrixTest extends TestCase {
|
|||
|
||||
}
|
||||
|
||||
//Additional Test for DenseRealMatrixTest.testMultiply
|
||||
//Additional Test for BlockRealMatrixTest.testMultiply
|
||||
|
||||
private double[][] d3 = new double[][] {{1,2,3,4},{5,6,7,8}};
|
||||
private double[][] d4 = new double[][] {{1},{2},{3},{4}};
|
||||
|
|
Loading…
Reference in New Issue