Package org.encog.util.normalize.input

Examples of org.encog.util.normalize.input.BasicInputField


      {6.0,7.0,8.0,9.0} };
  private static final Logger log = LoggerFactory
  .getLogger(TemporalPredictionHelper.class);
  public static void main(String[] argv){
//    TemporalPoint point = new TemporalPoint( [number of values] );
    InputField ifield = new BasicInputField();
    ifield.setCurrentValue(100);
    ifield.setMin(0);
    ifield.setMax(200);
    OutputFieldRangeMapped orm = new OutputFieldRangeMapped(ifield,-1,1);
    log.info(String.valueOf(orm.calculate(0)));
    log.info(String.valueOf(orm.convertBack(0)));
   
View Full Code Here

TOP

Related Classes of org.encog.util.normalize.input.BasicInputField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.