Tabnine Logo
SecondMoment.clear
Code IndexAdd Tabnine to your IDE (free)

How to use
clear
method
in
org.apache.commons.math.stat.descriptive.moment.SecondMoment

Best Java code snippets using org.apache.commons.math.stat.descriptive.moment.SecondMoment.clear (Showing top 9 results out of 315)

origin: org.apache.commons/commons-math

/**
 * {@inheritDoc}
 */
@Override
public void clear() {
  if (incMoment) {
    moment.clear();
  }
}
origin: org.apache.commons/commons-math

/**
 * {@inheritDoc}
 */
@Override
public void clear() {
  super.clear();
  m3 = Double.NaN;
  nDevSq = Double.NaN;
}
origin: org.apache.commons/math

/**
 * {@inheritDoc}
 */
@Override
public void clear() {
  if (incMoment) {
    moment.clear();
  }
}
origin: commons-math/commons-math

/**
 * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#clear()
 */
public void clear() {
  super.clear();
  m3 = Double.NaN;
  nDevSq = Double.NaN;
}
origin: commons-math/commons-math

/**
 * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#clear()
 */
public void clear() {
  if (incMoment) {
    moment.clear();
  }
}

origin: org.apache.commons/math

/**
 * {@inheritDoc}
 */
@Override
public void clear() {
  super.clear();
  m3 = Double.NaN;
  nDevSq = Double.NaN;
}
origin: org.apache.commons/math

/**
 * Resets all statistics and storage
 */
public void clear() {
  this.n = 0;
  minImpl.clear();
  maxImpl.clear();
  sumImpl.clear();
  sumLogImpl.clear();
  sumsqImpl.clear();
  geoMeanImpl.clear();
  secondMoment.clear();
  if (meanImpl != mean) {
    meanImpl.clear();
  }
  if (varianceImpl != variance) {
    varianceImpl.clear();
  }
}
origin: commons-math/commons-math

/** 
 * Resets all statistics and storage
 */
public void clear() {
  this.n = 0;
  minImpl.clear();
  maxImpl.clear();
  sumImpl.clear();
  sumLogImpl.clear();
  sumsqImpl.clear();
  geoMeanImpl.clear();
  secondMoment.clear();
  if (meanImpl != mean) {
    meanImpl.clear();
  }
  if (varianceImpl != variance) {
    varianceImpl.clear();
  }
}

origin: org.apache.commons/commons-math

/**
 * Resets all statistics and storage
 */
public void clear() {
  this.n = 0;
  minImpl.clear();
  maxImpl.clear();
  sumImpl.clear();
  sumLogImpl.clear();
  sumsqImpl.clear();
  geoMeanImpl.clear();
  secondMoment.clear();
  if (meanImpl != mean) {
    meanImpl.clear();
  }
  if (varianceImpl != variance) {
    varianceImpl.clear();
  }
}
org.apache.commons.math.stat.descriptive.momentSecondMomentclear

Popular methods of SecondMoment

  • <init>
    Copy constructor, creates a new SecondMoment identical to the original
  • evaluate
  • getN
  • increment
  • copy
    Copies source to dest.Neither source nor dest can be null.
  • getResult

Popular in Java

  • Reading from database using SQL prepared statement
  • setScale (BigDecimal)
  • setContentView (Activity)
  • getContentResolver (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JPanel (javax.swing)
  • CodeWhisperer alternatives
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