Class InputValue

This class represents an element of an InputMatrix. It is a specific class for a Kohonen Feature Map neural net.


public class InputValue

Extends


java.lang.Object

Instantiated by


InputMatrix

Constructors


public InputValue ()

public InputValue ( int x, int y, int z )

Creates an input value with x, y and z coordinate.

Methods


int getX ()

Returns the x coordinate of an input value.

 

int getY ()

Returns the y coordinate of an input value.

 

int getZ ()

Returns the z coordinate of an input value.

 

void setX ( int x )

Sets the x coordinate of an input value.

 

void setY ( int y )

Sets the y coordinate of an input value.

 

void setZ ( int z )

Sets the z coordinate of an input value.

Neural Net Components in an Object Oriented Class Structure