HomeSort by relevance Sort by last modified time
    Searched refs:BigMatrix (Results 1 - 5 of 5) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrix.java 34 public interface BigMatrix extends 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 m) throws IllegalArgumentException
    [all...]
BigMatrixImpl.java 26 * 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 using <code>v</code> as th
    [all...]
MatrixUtils.java 184 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} whose entries are the the values in th
    [all...]
  /external/eigen/test/
diagonalmatrices.cpp 22 typedef Matrix<Scalar, Rows==Dynamic?Dynamic:2*Rows, Cols==Dynamic?Dynamic:2*Cols> BigMatrix;
68 BigMatrix big;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 94 template<typename OtherDerived, bool BigMatrix> // MSVC 2005 will commit suicide if BigMatrix has a default value

Completed in 205 milliseconds