ch.unizh.ini.jaer.projects.hopfield.matrix
Class MatrixMath
java.lang.Object
ch.unizh.ini.jaer.projects.hopfield.matrix.MatrixMath
public class MatrixMath
- extends java.lang.Object
MatrixMath: This class can perform many different mathematical
operations on matrixes.
- Version:
- 2.1
- Author:
- Jeff Heaton
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
add
public static IntMatrix add(IntMatrix a,
IntMatrix b)
dotProduct
public static int dotProduct(IntMatrix a,
IntMatrix b)
identityInt
public static IntMatrix identityInt(int size)
multiply
public static IntMatrix multiply(IntMatrix a,
double b)
multiply
public static IntMatrix multiply(IntMatrix a,
IntMatrix b)
subtract
public static IntMatrix subtract(IntMatrix a,
IntMatrix b)
transpose
public static IntMatrix transpose(IntMatrix input)