jAER project on SourceForge

Uses of Class
ch.unizh.ini.jaer.projects.hopfield.matrix.IntMatrix

Packages that use IntMatrix
ch.unizh.ini.jaer.projects.hopfield.matrix   
 

Uses of IntMatrix in ch.unizh.ini.jaer.projects.hopfield.matrix
 

Methods in ch.unizh.ini.jaer.projects.hopfield.matrix that return IntMatrix
static IntMatrix MatrixMath.add(IntMatrix a, IntMatrix b)
           
 IntMatrix IntMatrix.clone()
           
static IntMatrix IntMatrix.createColumnMatrix(int[] input)
           
static IntMatrix IntMatrix.createRowMatrix(int[] input)
           
 IntMatrix IntMatrix.getCol(int col)
           
 IntMatrix HopfieldNetwork.getMatrix()
          Get the weight matrix for this neural network.
 IntMatrix IntMatrix.getRow(int row)
           
static IntMatrix MatrixMath.identityInt(int size)
           
static IntMatrix MatrixMath.multiply(IntMatrix a, double b)
           
static IntMatrix MatrixMath.multiply(IntMatrix a, IntMatrix b)
           
static IntMatrix MatrixMath.subtract(IntMatrix a, IntMatrix b)
           
static IntMatrix MatrixMath.transpose(IntMatrix input)
           
 

Methods in ch.unizh.ini.jaer.projects.hopfield.matrix with parameters of type IntMatrix
static IntMatrix MatrixMath.add(IntMatrix a, IntMatrix b)
           
static int MatrixMath.dotProduct(IntMatrix a, IntMatrix b)
           
 boolean IntMatrix.equals(IntMatrix matrix)
           
 boolean IntMatrix.equals(IntMatrix matrix, int precision)
           
static IntMatrix MatrixMath.multiply(IntMatrix a, double b)
           
static IntMatrix MatrixMath.multiply(IntMatrix a, IntMatrix b)
           
static IntMatrix MatrixMath.subtract(IntMatrix a, IntMatrix b)
           
static IntMatrix MatrixMath.transpose(IntMatrix input)
           
 


jAER project on SourceForge