congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
XYCurve.size
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using de.lmu.ifi.dbs.elki.math.geometry.XYCurve.size (Showing top 2 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

assertEquals("ROC curve too complex", 6, roccurve.size());
de.lmu.ifi.dbs.elki.math.geometryXYCurvesize

Javadoc

Size of curve.

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
  • getLabely
    Get label of y 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
  • getMiny,
  • iterator,
  • getX,
  • getY,
  • writeToText

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • getExternalFilesDir (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Top 17 Plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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