A B C D E G H I K L M N O P Q R S T U V Z

A

add(Matrix, Matrix) - Static method in class org.jmatrices.dbl.client.MatlabSyntax
 
add(Matrix, double) - Static method in class org.jmatrices.dbl.client.MatlabSyntax
 
add(Matrix, Matrix) - Static method in class org.jmatrices.dbl.operator.MatrixOperator
Matrix Addition

Matrices must be of the same dimensions!

apply(double, double) - Method in interface org.jmatrices.dbl.operator.MatrixEBEOperation
Applies the operation to the elements todo - perhaps we should provide row, col for better control!
apply(Matrix) - Method in interface org.jmatrices.dbl.rowcoltr.ColumnTransformation
 
applyColumnOperation(Matrix, ColumnTransformation) - Static method in class org.jmatrices.dbl.rowcoltr.ColumnTransformer

this is an open thought of trying to make column operations eleganter and perhaps faster Check out the "see also" section

applyEBEOperation(Matrix, Matrix, MatrixEBEOperation) - Static method in class org.jmatrices.dbl.operator.MatrixOperator
Applies element-by-element operation combining the elements of the two matrices
Note: Matrix a's underlying implementation is propogated in the resulting matrix
Usage: from MatrixOperator.add(org.jmatrices.dbl.Matrix, org.jmatrices.dbl.Matrix) public static Matrix add(Matrix a, Matrix b) { return applyEBEOperation(a, b, new MatrixEBEOperation() { public double apply(double a, double b) { return a + b; } }); } Hypothetical Usage: public static Matrix doSomeThing(Matrix a, Matrix b, final double n) { return applyEBEOperation(a, b, new MatrixEBEOperation() { public double apply(double a, double b) { return (a^2 + b^2)^n; } }); }
areEqual(Matrix, Matrix) - Static method in class org.jmatrices.dbl.measure.MatricesMeasure
Compares elements of matrices to try and determine equality of matrices
areSameDimension(Matrix, Matrix) - Static method in class org.jmatrices.dbl.measure.MatricesMeasure
Compares dimensions of the two matrices

A B C D E G H I K L M N O P Q R S T U V Z