Uses of Class
at.tuwien.ifs.somtoolbox.layers.Layer.GridLayout

Packages that use Layer.GridLayout
at.tuwien.ifs.somtoolbox.input Provides classes responsible for reading trained network models from file or some other location. 
at.tuwien.ifs.somtoolbox.layers Provides the basic classes constituting SOM-based neural networks. 
at.tuwien.ifs.somtoolbox.output Provides classes to write trained SOMs to files for future re-use. 
at.tuwien.ifs.somtoolbox.properties Provides classes that handle reading network-specific properties for the training and properties specific to the state of applications. 
 

Uses of Layer.GridLayout in at.tuwien.ifs.somtoolbox.input
 

Fields in at.tuwien.ifs.somtoolbox.input declared as Layer.GridLayout
protected  Layer.GridLayout AbstractSOMInputReader.gridLayout
           
 

Methods in at.tuwien.ifs.somtoolbox.input that return Layer.GridLayout
 Layer.GridLayout AbstractSOMInputReader.getGridLayout()
           
 Layer.GridLayout SOMInputReader.getGridLayout()
           
 

Uses of Layer.GridLayout in at.tuwien.ifs.somtoolbox.layers
 

Fields in at.tuwien.ifs.somtoolbox.layers declared as Layer.GridLayout
protected  Layer.GridLayout GrowingLayer.gridLayout
           
 

Methods in at.tuwien.ifs.somtoolbox.layers that return Layer.GridLayout
 Layer.GridLayout Layer.getGridLayout()
           
 Layer.GridLayout GrowingCellLayer.getGridLayout()
           
 Layer.GridLayout GrowingLayer.getGridLayout()
           
static Layer.GridLayout Layer.GridLayout.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Layer.GridLayout[] Layer.GridLayout.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in at.tuwien.ifs.somtoolbox.layers with parameters of type Layer.GridLayout
 void GrowingLayer.setGridLayout(Layer.GridLayout gridLayout)
           
 

Uses of Layer.GridLayout in at.tuwien.ifs.somtoolbox.output
 

Methods in at.tuwien.ifs.somtoolbox.output with parameters of type Layer.GridLayout
private static BufferedWriter SOMLibMapOutputter.openAndWriteUnitFileHeader(String fDir, String fName, String id, int xSize, int ySize, int zSize, Layer.GridLayout gridLayout, Layer.GridTopology gridTopology, boolean gzipped)
           
static void SOMLibMapOutputter.writeUnitDescriptionFile(int xdim, int ydim, Layer.GridLayout gridLayout, Layer.GridTopology gridTopology, String fDir, String fName, boolean gzipped)
          Method to write a unit description file of an empty map.
static void SOMLibMapOutputter.writeUnitDescriptionFile(String[][][] labels, Layer.GridLayout gridLayout, Layer.GridTopology gridTopology, String fDir, String fName, boolean gzipped)
           
static void SOMLibMapOutputter.writeWeightVectorFile(double[][][][] weights, Layer.GridLayout gridLayout, Layer.GridTopology gridTopology, String fDir, String fName, boolean gzipped)
          Writes the Weight Vector File from given weight values, used e.g.
protected static BufferedWriter SOMLibMapOutputter.writeWeightVectorFileHeader(String fDir, String fName, boolean gzipped, int xDim, int yDim, int zDim, Layer.GridLayout gridLayout, Layer.GridTopology gridTopology, int vecDim, String idString, String... extraHeaders)
          Writes the header part of the weight vector file.
 

Uses of Layer.GridLayout in at.tuwien.ifs.somtoolbox.properties
 

Fields in at.tuwien.ifs.somtoolbox.properties declared as Layer.GridLayout
private  Layer.GridLayout SOMProperties.gridLayout
           
 

Methods in at.tuwien.ifs.somtoolbox.properties that return Layer.GridLayout
 Layer.GridLayout SOMProperties.getGridLayout()