Exemple #1
0
 /**
  * Generate matrix with random elements
  *
  * @param m Number of rows.
  * @param n Number of colums.
  * @return An m-by-n matrix with uniformly distributed random elements.
  */
 public static Matrix random(int m, int n) {
   Matrix A = new Matrix(m, n);
   double[][] X = A.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       X[i][j] = Math.random();
     }
   }
   return A;
 }
Exemple #2
0
 /**
  * Generate identity matrix
  *
  * @param m Number of rows.
  * @param n Number of colums.
  * @return An m-by-n matrix with ones on the diagonal and zeros elsewhere.
  */
 public static Matrix identity(int m, int n) {
   Matrix A = new Matrix(m, n);
   double[][] X = A.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       X[i][j] = (i == j ? 1.0 : 0.0);
     }
   }
   return A;
 }
Exemple #3
0
 /**
  * Matrix transpose.
  *
  * @return A'
  */
 public Matrix transpose() {
   Matrix X = new Matrix(n, m);
   double[][] C = X.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       C[j][i] = A[i][j];
     }
   }
   return X;
 }
Exemple #4
0
 /**
  * Multiply a matrix by a scalar, C = s*A
  *
  * @param s scalar
  * @return s*A
  */
 public Matrix times(double s) {
   Matrix X = new Matrix(m, n);
   double[][] C = X.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       C[i][j] = s * A[i][j];
     }
   }
   return X;
 }
Exemple #5
0
 /**
  * Unary minus
  *
  * @return -A
  */
 public Matrix uminus() {
   Matrix X = new Matrix(m, n);
   double[][] C = X.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       C[i][j] = -A[i][j];
     }
   }
   return X;
 }
Exemple #6
0
 /**
  * Element-by-element left division, C = A.\B
  *
  * @param B another matrix
  * @return A.\B
  */
 public Matrix arrayLeftDivide(Matrix B) {
   checkMatrixDimensions(B);
   Matrix X = new Matrix(m, n);
   double[][] C = X.getArray();
   for (int i = 0; i < m; i++) {
     for (int j = 0; j < n; j++) {
       C[i][j] = B.A[i][j] / A[i][j];
     }
   }
   return X;
 }
Exemple #7
0
 /**
  * Get a submatrix.
  *
  * @param r Array of row indices.
  * @param i0 Initial column index
  * @param i1 Final column index
  * @return A(r(:),j0:j1)
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public Matrix getMatrix(int[] r, int j0, int j1) {
   Matrix X = new Matrix(r.length, j1 - j0 + 1);
   double[][] B = X.getArray();
   try {
     for (int i = 0; i < r.length; i++) {
       for (int j = j0; j <= j1; j++) {
         B[i][j - j0] = A[r[i]][j];
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
   return X;
 }
Exemple #8
0
 /**
  * Get a submatrix.
  *
  * @param i0 Initial row index
  * @param i1 Final row index
  * @param c Array of column indices.
  * @return A(i0:i1,c(:))
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public Matrix getMatrix(int i0, int i1, int[] c) {
   Matrix X = new Matrix(i1 - i0 + 1, c.length);
   double[][] B = X.getArray();
   try {
     for (int i = i0; i <= i1; i++) {
       for (int j = 0; j < c.length; j++) {
         B[i - i0][j] = A[i][c[j]];
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
   return X;
 }
Exemple #9
0
 /**
  * Get a submatrix.
  *
  * @param i0 Initial row index
  * @param i1 Final row index
  * @param j0 Initial column index
  * @param j1 Final column index
  * @return A(i0:i1,j0:j1)
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public Matrix getMatrix(int i0, int i1, int j0, int j1) {
   Matrix X = new Matrix(i1 - i0 + 1, j1 - j0 + 1);
   double[][] B = X.getArray();
   try {
     for (int i = i0; i <= i1; i++) {
       for (int j = j0; j <= j1; j++) {
         B[i - i0][j - j0] = A[i][j];
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
   return X;
 }
Exemple #10
0
 /**
  * Construct a matrix from a copy of a 2-D array.
  *
  * @param A Two-dimensional array of doubles.
  * @exception IllegalArgumentException All rows must have the same length
  */
 public static Matrix constructWithCopy(double[][] A) {
   int m = A.length;
   int n = A[0].length;
   Matrix X = new Matrix(m, n);
   double[][] C = X.getArray();
   for (int i = 0; i < m; i++) {
     if (A[i].length != n) {
       throw new IllegalArgumentException("All rows must have the same length.");
     }
     for (int j = 0; j < n; j++) {
       C[i][j] = A[i][j];
     }
   }
   return X;
 }
Exemple #11
0
 /**
  * Set a submatrix.
  *
  * @param i0 Initial row index
  * @param i1 Final row index
  * @param c Array of column indices.
  * @param X A(i0:i1,c(:))
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public void setMatrix(int i0, int i1, int[] c, Matrix X) {
   try {
     for (int i = i0; i <= i1; i++) {
       for (int j = 0; j < c.length; j++) {
         A[i][c[j]] = X.get(i - i0, j);
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
 }
Exemple #12
0
 /**
  * Set a submatrix.
  *
  * @param r Array of row indices.
  * @param j0 Initial column index
  * @param j1 Final column index
  * @param X A(r(:),j0:j1)
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public void setMatrix(int[] r, int j0, int j1, Matrix X) {
   try {
     for (int i = 0; i < r.length; i++) {
       for (int j = j0; j <= j1; j++) {
         A[r[i]][j] = X.get(i, j - j0);
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
 }
Exemple #13
0
 /**
  * Set a submatrix.
  *
  * @param i0 Initial row index
  * @param i1 Final row index
  * @param j0 Initial column index
  * @param j1 Final column index
  * @param X A(i0:i1,j0:j1)
  * @exception ArrayIndexOutOfBoundsException Submatrix indices
  */
 public void setMatrix(int i0, int i1, int j0, int j1, Matrix X) {
   try {
     for (int i = i0; i <= i1; i++) {
       for (int j = j0; j <= j1; j++) {
         A[i][j] = X.get(i - i0, j - j0);
       }
     }
   } catch (ArrayIndexOutOfBoundsException e) {
     throw new ArrayIndexOutOfBoundsException("Submatrix indices");
   }
 }
Exemple #14
0
 /**
  * Linear algebraic matrix multiplication, A * B
  *
  * @param B another matrix
  * @return Matrix product, A * B
  * @exception IllegalArgumentException Matrix inner dimensions must agree.
  */
 public Matrix times(Matrix B) {
   if (B.m != n) {
     throw new IllegalArgumentException("Matrix inner dimensions must agree.");
   }
   Matrix X = new Matrix(m, B.n);
   double[][] C = X.getArray();
   double[] Bcolj = new double[n];
   for (int j = 0; j < B.n; j++) {
     for (int k = 0; k < n; k++) {
       Bcolj[k] = B.A[k][j];
     }
     for (int i = 0; i < m; i++) {
       double[] Arowi = A[i];
       double s = 0;
       for (int k = 0; k < n; k++) {
         s += Arowi[k] * Bcolj[k];
       }
       C[i][j] = s;
     }
   }
   return X;
 }
Exemple #15
0
 /**
  * Solve X*A = B, which is also A'*X' = B'
  *
  * @param B right hand side
  * @return solution if A is square, least squares solution otherwise.
  */
 public double[][] solveTranspose(Matrix B) {
   return transpose().solve(B.transpose());
 }