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

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

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

origin: org.apache.commons/commons-math3

/**
 * Copies source to dest.
 * <p>Neither source nor dest can be null.</p>
 *
 * @param source Kurtosis to copy
 * @param dest Kurtosis to copy to
 * @throws NullArgumentException if either source or dest is null
 */
public static void copy(Kurtosis source, Kurtosis dest)
  throws NullArgumentException {
  MathUtils.checkNotNull(source);
  MathUtils.checkNotNull(dest);
  dest.setData(source.getDataRef());
  dest.moment = source.moment.copy();
  dest.incMoment = source.incMoment;
}
origin: geogebra/geogebra

/**
 * Copies source to dest.
 * <p>Neither source nor dest can be null.</p>
 *
 * @param source Kurtosis to copy
 * @param dest Kurtosis to copy to
 * @throws NullArgumentException if either source or dest is null
 */
public static void copy(Kurtosis source, Kurtosis dest)
  throws NullArgumentException {
  MathUtils.checkNotNull(source);
  MathUtils.checkNotNull(dest);
  dest.setData(source.getDataRef());
  dest.moment = source.moment.copy();
  dest.incMoment = source.incMoment;
}
origin: io.virtdata/virtdata-lib-realer

/**
 * Copies source to dest.
 * <p>Neither source nor dest can be null.</p>
 *
 * @param source Kurtosis to copy
 * @param dest Kurtosis to copy to
 * @throws NullArgumentException if either source or dest is null
 */
public static void copy(Kurtosis source, Kurtosis dest)
  throws NullArgumentException {
  MathUtils.checkNotNull(source);
  MathUtils.checkNotNull(dest);
  dest.setData(source.getDataRef());
  dest.moment = source.moment.copy();
  dest.incMoment = source.incMoment;
}
org.apache.commons.math3.stat.descriptive.momentKurtosissetData

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
  • copy
    Copies source to dest.Neither source nor dest can be null.
  • getDataRef
  • test
  • getResult
  • increment
    Note that when #Kurtosis(FourthMoment) is used to create a Variance, this method does nothing. In th
  • clear

Popular in Java

  • Making http requests using okhttp
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • setRequestProperty (URLConnection)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • JTextField (javax.swing)
  • Top PhpStorm 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