|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.umbc.cs.maple.utils.JamaUtils
public class JamaUtils
Various utility functions for the Jama matrix toolkit.
Copyright (c) 2008 Eric Eaton
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Nested Class Summary | |
---|---|
static class |
JamaUtils.Function
Specifies a simple mathematical function. |
Constructor Summary | |
---|---|
JamaUtils()
|
Method Summary | |
---|---|
static Jama.Matrix |
colsum(Jama.Matrix m)
Computes the sum of each column of a matrix. |
static double |
colsum(Jama.Matrix m,
int col)
Gets the sum of the specified column of the matrix. |
static Jama.Matrix |
columnAppend(Jama.Matrix m,
Jama.Matrix n)
Appends additional columns to the first matrix. |
static Jama.Matrix |
deleteCol(Jama.Matrix m,
int col)
Deletes a column from a matrix. |
static Jama.Matrix |
deleteRow(Jama.Matrix m,
int row)
Deletes a row from a matrix. |
static double |
dotproduct(Jama.Matrix m1,
Jama.Matrix m2)
Computes the dot product of two vectors. |
protected static double |
gcv(Jama.Matrix A,
Jama.Matrix b)
Selects the regularization parameter by generalized cross-validation. |
static Jama.Matrix |
getcol(Jama.Matrix m,
int col)
Gets the specified column of a matrix. |
static Jama.Matrix |
getcolumns(Jama.Matrix m,
int[] columns)
Gets the specified columns of a matrix. |
static double |
getMax(Jama.Matrix m)
Gets the maximum value in a matrix. |
static double |
getMin(Jama.Matrix m)
Gets the minimum value in a matrix. |
static Jama.Matrix |
getrow(Jama.Matrix m,
int row)
Gets the specified row of a matrix. |
static Jama.Matrix |
getrows(Jama.Matrix m,
int[] rows)
Gets the specified rows of a matrix. |
static boolean |
isColumnVector(Jama.Matrix m)
Determines if a given matrix is a column vector, that is, it has only one column. |
static boolean |
isRowVector(Jama.Matrix m)
Determines if a given matrix is a row vector, that is, it has only one row. |
static boolean |
isSymmetric(Jama.Matrix m)
Determines whether a matrix is symmetric. |
static Jama.Matrix |
loadSparseMatrix(java.io.File file)
|
static void |
main(java.lang.String[] args)
Test function for regularized least squares. |
static Jama.Matrix |
makeColumnVector(Jama.Matrix m)
Transforms the given matrix into a column vector, that is, a matrix with one column. |
static void |
makeMatrixSymmetric(Jama.Matrix m,
JamaUtils.Function f)
Makes a matrix symmetric by applying a function to symmetric elements. |
static Jama.Matrix |
makeRowVector(Jama.Matrix m)
Transforms the given matrix into a row vector, that is, a matrix with one row. |
static Jama.Matrix |
normalize(Jama.Matrix m)
Normalizes a matrix to make the elements sum to 1. |
static Jama.Matrix |
ones(int numRows,
int numCols)
Make a matrix of ones. |
static Jama.Matrix |
regLeastSquares(Jama.Matrix A,
Jama.Matrix b)
Performs least squares regression using Tikhonov regularization. |
static Jama.Matrix |
regLeastSquares(Jama.Matrix A,
Jama.Matrix b,
double lambda)
Performs least squares regression using Tikhonov regularization. |
static Jama.Matrix |
regLeastSquares(Jama.Matrix A,
Jama.Matrix b,
Jama.Matrix regop)
Performs least squares regression using Tikhonov regularization. |
static double |
rmse(Jama.Matrix a,
Jama.Matrix b)
Computes the root mean squared error of two matrices |
static Jama.Matrix |
rowAppend(Jama.Matrix m,
Jama.Matrix n)
Appends additional rows to the first matrix. |
static Jama.Matrix |
rowsum(Jama.Matrix m)
Computes the sum of each row of a matrix. |
static double |
rowsum(Jama.Matrix m,
int row)
Gets the sum of the specified row of the matrix. |
static void |
setcol(Jama.Matrix m,
int col,
double[] values)
Sets the specified column of a matrix. |
static void |
setcol(Jama.Matrix m,
int col,
Jama.Matrix values)
Sets the specified column of a matrix. |
static void |
setrow(Jama.Matrix m,
int row,
Jama.Matrix values)
Sets the specified row of a matrix. |
static double |
sum(Jama.Matrix m)
Computes the sum the elements of a matrix. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JamaUtils()
Method Detail |
---|
public static Jama.Matrix getcol(Jama.Matrix m, int col)
m
- the matrix.col
- the column to get.
public static Jama.Matrix getcolumns(Jama.Matrix m, int[] columns)
m
- the matrixcolumns
- the columns to get
public static Jama.Matrix getrow(Jama.Matrix m, int row)
m
- the matrix.row
- the row to get.
public static Jama.Matrix getrows(Jama.Matrix m, int[] rows)
m
- the matrixrows
- the rows to get
public static void setrow(Jama.Matrix m, int row, Jama.Matrix values)
m
- the matrix.row
- the row to modify.values
- the new values of the row.public static void setcol(Jama.Matrix m, int col, Jama.Matrix values)
m
- the matrix.col
- the column to modify.values
- the new values of the column.public static void setcol(Jama.Matrix m, int col, double[] values)
m
- the matrix.col
- the column to modify.values
- the new values of the column.public static Jama.Matrix rowAppend(Jama.Matrix m, Jama.Matrix n)
m
- the first matrix.n
- the matrix to append containing additional rows.
public static Jama.Matrix columnAppend(Jama.Matrix m, Jama.Matrix n)
m
- the first matrix.n
- the matrix to append containing additional columns.
public static Jama.Matrix deleteRow(Jama.Matrix m, int row)
m
- the matrix.row
- the row to delete.
public static Jama.Matrix deleteCol(Jama.Matrix m, int col)
m
- the matrix.col
- the column to delete.
public static double rowsum(Jama.Matrix m, int row)
m
- the matrix.row
- the row.
public static double colsum(Jama.Matrix m, int col)
m
- the matrix.col
- the column.
public static Jama.Matrix rowsum(Jama.Matrix m)
m
- the matrix.
public static Jama.Matrix colsum(Jama.Matrix m)
m
- the matrix.
public static double sum(Jama.Matrix m)
m
- the matrix.
public static boolean isRowVector(Jama.Matrix m)
m
- the matrix.
public static boolean isColumnVector(Jama.Matrix m)
m
- the matrix.
public static Jama.Matrix makeColumnVector(Jama.Matrix m)
m
-
m.transpose()
if m is a row vector,
m
if m is a column vector.
java.lang.IllegalArgumentException
- if m is not a row vector or a column vector.public static Jama.Matrix makeRowVector(Jama.Matrix m)
m
-
m.transpose()
if m is a column vector,
m
if m is a row vector.
java.lang.IllegalArgumentException
- if m is not a row vector or a column vector.public static double dotproduct(Jama.Matrix m1, Jama.Matrix m2)
m1
- m2
-
public static boolean isSymmetric(Jama.Matrix m)
m
- the matrix.
true
if a is symmetric, false
otherwisepublic static void makeMatrixSymmetric(Jama.Matrix m, JamaUtils.Function f)
m
- the matrix to make symmetricf
- the function to applypublic static Jama.Matrix normalize(Jama.Matrix m)
m
- the matrix
public static double getMax(Jama.Matrix m)
m
- the matrix
public static double getMin(Jama.Matrix m)
m
- the matrix
public static Jama.Matrix ones(int numRows, int numCols)
numRows
- the number of rows.numCols
- the number of columns.
public static Jama.Matrix regLeastSquares(Jama.Matrix A, Jama.Matrix b)
A
- the data matrix (n x m).b
- the target function values (n x 1).public static Jama.Matrix regLeastSquares(Jama.Matrix A, Jama.Matrix b, double lambda)
A
- the data matrix (n x m).b
- the target function values (n x 1).lambda
- the lambda values. If less than zero, it is estimated
using generalized cross-validation.public static Jama.Matrix regLeastSquares(Jama.Matrix A, Jama.Matrix b, Jama.Matrix regop)
A
- the data matrix (n x m).b
- the target function values (n x 1).regop
- the regularization operator (m x m). The default is to use the identity matrix
as the regularization operator, so you probably don't want to use this
verion of regLeastSquares() without a really good reason. Use
regLeastSquares(Matrix A, Matrix b, double lambda) instead.protected static double gcv(Jama.Matrix A, Jama.Matrix b)
public static double rmse(Jama.Matrix a, Jama.Matrix b)
a
- b
-
public static Jama.Matrix loadSparseMatrix(java.io.File file)
public static void main(java.lang.String[] args)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |