Package weka.core

Examples of weka.core.DistanceFunction


   *
   * @return the distance function specification string
   */
  protected String getDistanceFSpec() {
   
    DistanceFunction d = getDistanceF();
    if (d instanceof OptionHandler) {
      return d.getClass().getName() + " "
  + Utils.joinOptions(((OptionHandler) d).getOptions());
    }
    return d.getClass().getName();
  }
View Full Code Here


   *
   * @return the distance function specification string
   */
  protected String getDistanceFSpec() {
   
    DistanceFunction d = getDistanceF();
    if (d instanceof OptionHandler) {
      return d.getClass().getName() + " "
  + Utils.joinOptions(((OptionHandler) d).getOptions());
    }
    return d.getClass().getName();
  }
View Full Code Here

TOP

Related Classes of weka.core.DistanceFunction

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.