Tabnine Logo
Kurtosis.copy
Code IndexAdd Tabnine to your IDE (free)

How to use
copy
method
in
org.apache.commons.math3.stat.descriptive.moment.Kurtosis

Best Java code snippets using org.apache.commons.math3.stat.descriptive.moment.Kurtosis.copy (Showing top 6 results out of 315)

origin: org.apache.commons/commons-math3

/**
 * Copy constructor, creates a new {@code Kurtosis} identical
 * to the {@code original}
 *
 * @param original the {@code Kurtosis} instance to copy
 * @throws NullArgumentException if original is null
 */
public Kurtosis(Kurtosis original) throws NullArgumentException {
  copy(original, this);
}
origin: org.apache.commons/commons-math3

/**
 * {@inheritDoc}
 */
@Override
public Kurtosis copy() {
  Kurtosis result = new Kurtosis();
  // No try-catch because args are guaranteed non-null
  copy(this, result);
  return result;
}
origin: geogebra/geogebra

/**
 * Copy constructor, creates a new {@code Kurtosis} identical
 * to the {@code original}
 *
 * @param original the {@code Kurtosis} instance to copy
 * @throws NullArgumentException if original is null
 */
public Kurtosis(Kurtosis original) throws NullArgumentException {
  copy(original, this);
}
origin: io.virtdata/virtdata-lib-realer

/**
 * Copy constructor, creates a new {@code Kurtosis} identical
 * to the {@code original}
 *
 * @param original the {@code Kurtosis} instance to copy
 * @throws NullArgumentException if original is null
 */
public Kurtosis(Kurtosis original) throws NullArgumentException {
  copy(original, this);
}
origin: geogebra/geogebra

/**
 * {@inheritDoc}
 */
@Override
public Kurtosis copy() {
  Kurtosis result = new Kurtosis();
  // No try-catch because args are guaranteed non-null
  copy(this, result);
  return result;
}
origin: io.virtdata/virtdata-lib-realer

/**
 * {@inheritDoc}
 */
@Override
public Kurtosis copy() {
  Kurtosis result = new Kurtosis();
  // No try-catch because args are guaranteed non-null
  copy(this, result);
  return result;
}
org.apache.commons.math3.stat.descriptive.momentKurtosiscopy

Popular methods of Kurtosis

  • <init>
    Copy constructor, creates a new Kurtosis identical to the original
  • evaluate
    Returns the kurtosis of the entries in the specified portion of the input array. See Kurtosis for d
  • getDataRef
  • setData
  • test
  • getResult
  • increment
    Note that when #Kurtosis(FourthMoment) is used to create a Variance, this method does nothing. In th
  • clear

Popular in Java

  • Start an intent from android
  • compareTo (BigDecimal)
  • getApplicationContext (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • JOptionPane (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Best IntelliJ 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