Searched refs:BigMatrix (Results 1 - 4 of 4) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DBigMatrix.java34 public interface BigMatrix extends AnyMatrix { interface in inherits:AnyMatrix
41 BigMatrix copy();
50 BigMatrix add(BigMatrix m) throws IllegalArgumentException;
59 BigMatrix subtract(BigMatrix m) throws IllegalArgumentException;
67 BigMatrix scalarAdd(BigDecimal d);
75 BigMatrix scalarMultiply(BigDecimal d);
85 BigMatrix multiply(BigMatrix
[all...]
H A DBigMatrixImpl.java26 * Implementation of {@link BigMatrix} using a BigDecimal[][] array to store entries
47 * As specified in the {@link BigMatrix} interface, matrix element indexing
56 public class BigMatrixImpl implements BigMatrix, Serializable {
97 * Create a new BigMatrix with the supplied row and column dimensions.
118 * Create a new BigMatrix using <code>d</code> as the underlying
135 * Create a new BigMatrix using the input array as the underlying
138 * BigMatrix and not used directly, the <code>copyArray</code> may be
178 * Create a new BigMatrix using <code>d</code> as the underlying
210 * Create a new BigMatrix using the values represented by the strings in
240 * Create a new (column) BigMatrix usin
[all...]
H A DMatrixUtils.java184 public static BigMatrix createBigIdentityMatrix(int dimension) {
230 * Returns a {@link BigMatrix} whose entries are the the values in the
241 public static BigMatrix createBigMatrix(double[][] data) {
246 * Returns a {@link BigMatrix} whose entries are the the values in the
257 public static BigMatrix createBigMatrix(BigDecimal[][] data) {
262 * Returns a {@link BigMatrix} whose entries are the the values in the
265 * BigMatrix and not used directly, the <code>copyArray</code> may be
271 * @return BigMatrix containing the values of the array
279 public static BigMatrix createBigMatrix(BigDecimal[][] data, boolean copyArray) {
284 * Returns a {@link BigMatrix} whos
[all...]
/external/eigen/test/
H A Ddiagonalmatrices.cpp23 typedef Matrix<Scalar, Rows==Dynamic?Dynamic:2*Rows, Cols==Dynamic?Dynamic:2*Cols> BigMatrix; typedef
76 BigMatrix big;

Completed in 106 milliseconds