Package com.mockturtlesolutions.snifflib.datatypes

Examples of com.mockturtlesolutions.snifflib.datatypes.DblMatrix.lt()


    System.out.println("Setting smoothing parameter...");
    NNBandwidth BW = (NNBandwidth)lpreg.getBandwidthMethod();
    FixedSmoothMethod SM = (FixedSmoothMethod)BW.getSmoothMethod();
    DblMatrix sp = this.getParam("smoothing_param");
   
    if (DblMatrix.test(sp.lt(0.01))) //Can't let window get so small that the number of data points is less than the model df+1+number of derivatives you want to estimate.
    {
      return(DblMatrix.INF);
    }
   
    SM.setSmoothParameter(sp.getDoubleAt(0)); //The proportion of N that gives K in the NN method.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.