Package de.lmu.ifi.dbs.elki.data

Examples of de.lmu.ifi.dbs.elki.data.FloatVector$Parameterizer


   *
   * @see de.lmu.ifi.dbs.elki.datasource.parser.NumberVectorLabelParser#createDBObject(java.util.List)
   */
  @Override
  public FloatVector createDBObject(List<Double> attributes) {
    return new FloatVector(Util.convertToFloat(attributes));
  }
View Full Code Here


    return new FloatVector(Util.convertToFloat(attributes));
  }

  @Override
  protected VectorFieldTypeInformation<FloatVector> getTypeInformation(int dimensionality) {
    return new VectorFieldTypeInformation<FloatVector>(FloatVector.class, dimensionality, new FloatVector(new float[dimensionality]));
  }
View Full Code Here

TOP

Related Classes of de.lmu.ifi.dbs.elki.data.FloatVector$Parameterizer

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.