Examples of FloatVector


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

   *
   * @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

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

    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

Examples of de.mpi.rgblab.utils.vector.FloatVector

  private void initMeasures() {

    // the number of points on the map

    MemoryUtil.printMemoryInMB("before initializing measures");
    visibility = new FloatVector(number_points);
    saliency = new ShortVector(number_points);
    // meanVisibility = new UnsignedShortVector(number_points);
    MemoryUtil.printMemoryInMB("after crating vis and saliency vectors");
    System.out.println(y_res);
    System.out.println(x_res);
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.