Neuroph

org.neuroph.core.transfer
Class Sgn

java.lang.Object
  extended by org.neuroph.core.transfer.TransferFunction
      extended by org.neuroph.core.transfer.Sgn
All Implemented Interfaces:
java.io.Serializable

public class Sgn
extends TransferFunction
implements java.io.Serializable

The Sgn class provides sgn neuron transfer function.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
          The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
 
Constructor Summary
Sgn()
           
 
Method Summary
 double getOutput(double net)
          y = 1, x > 0 y = -1, x <= 0
 java.util.Properties getProperties()
          Returns the properties of this function
 
Methods inherited from class org.neuroph.core.transfer.TransferFunction
getDerivative, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.

See Also:
Constant Field Values
Constructor Detail

Sgn

public Sgn()
Method Detail

getOutput

public double getOutput(double net)
y = 1, x > 0 y = -1, x <= 0

Specified by:
getOutput in class TransferFunction
Parameters:
net - net input

getProperties

public java.util.Properties getProperties()
Returns the properties of this function

Returns:
properties of this function

Neuroph