Tabnine Logo
XYCurve.getLabely
Code IndexAdd Tabnine to your IDE (free)

How to use
getLabely
method
in
de.lmu.ifi.dbs.elki.math.geometry.XYCurve

Best Java code snippets using de.lmu.ifi.dbs.elki.math.geometry.XYCurve.getLabely (Showing top 3 results out of 315)

origin: elki-project/elki

 @Override
 public void write(TextWriterStream out, String label, XYCurve object) {
  out.commentPrint(object.getLabelx());
  out.commentPrint(" ");
  out.commentPrint(object.getLabely());
  out.flush();
  for(int pos = 0; pos < object.size(); pos++) {
   out.inlinePrint(FormatUtil.NF8.format(object.getX(pos)));
   out.inlinePrint(FormatUtil.NF8.format(object.getY(pos)));
   out.flush();
  }
 }
}
origin: elki-project/elki

SVGUtil.setCSSClass(labelx, CSS_AXIS_LABEL);
layer.appendChild(labelx);
Element labely = plot.svgText(margin * -.8, sizey * .5, curve.getLabely());
SVGUtil.setCSSClass(labely, CSS_AXIS_LABEL);
SVGUtil.setAtt(labely, SVGConstants.SVG_TRANSFORM_ATTRIBUTE, "rotate(-90," + FormatUtil.NF6.format(margin * -.8) + "," + FormatUtil.NF6.format(sizey * .5) + ")");
origin: de.lmu.ifi.dbs.elki/elki-batik-visualization

SVGUtil.setCSSClass(labelx, CSS_AXIS_LABEL);
layer.appendChild(labelx);
Element labely = plot.svgText(margin * -.8, sizey * .5, curve.getLabely());
SVGUtil.setCSSClass(labely, CSS_AXIS_LABEL);
SVGUtil.setAtt(labely, SVGConstants.SVG_TRANSFORM_ATTRIBUTE, "rotate(-90," + FormatUtil.NF6.format(margin * -.8) + "," + FormatUtil.NF6.format(sizey * .5) + ")");
de.lmu.ifi.dbs.elki.math.geometryXYCurvegetLabely

Javadoc

Get label of y axis

Popular methods of XYCurve

  • add
    Add a coordinate pair, but don't simplify
  • addAndSimplify
    Add a coordinate pair, performing curve simplification if possible.
  • areaUnderCurve
    Compute the area under curve for a curvemonotonously increasing in X. You might need to relate this
  • <init>
    Constructor with size estimate and labels.
  • getLabelx
    Get label of x axis
  • rescale
    Rescale the graph.
  • getMaxx
    Maximum on x axis.
  • getMaxy
    Maximum on y axis.
  • getMinx
    Minimum on x axis.
  • getMiny
    Minimum on y axis.
  • iterator
    Get an iterator for the curve. Note: this is not a Java style iterator, since the only way to get po
  • size
    Size of curve.
  • iterator,
  • size,
  • getX,
  • getY,
  • writeToText

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (ScheduledExecutorService)
  • findViewById (Activity)
  • getContentResolver (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now