org.apache.commons.math3.stat.descriptive.moment.Mean.copy()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(143)

本文整理了Java中org.apache.commons.math3.stat.descriptive.moment.Mean.copy()方法的一些代码示例,展示了Mean.copy()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Mean.copy()方法的具体详情如下:
包路径:org.apache.commons.math3.stat.descriptive.moment.Mean
类名称:Mean
方法名:copy

Mean.copy介绍

暂无

代码示例

代码示例来源:origin: org.apache.commons/commons-math3

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

代码示例来源:origin: org.apache.commons/commons-math3

/**
 * {@inheritDoc}
 */
@Override
public Mean copy() {
  Mean result = new Mean();
  // No try-catch or advertised exception because args are guaranteed non-null
  copy(this, result);
  return result;
}

代码示例来源:origin: apache/accumulo

public Stat copy() {
  Stat stat = new Stat();
  stat.min = this.min;
  stat.max = this.max;
  stat.sum = this.sum;
  stat.mean = this.mean.copy();
  return stat;
 }
}

代码示例来源:origin: org.apache.commons/commons-math3

dest.mean = (Mean) dest.meanImpl;
} else {
  Mean.copy(source.mean, dest.mean);

代码示例来源:origin: io.virtdata/virtdata-lib-realer

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

代码示例来源:origin: geogebra/geogebra

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

代码示例来源:origin: geogebra/geogebra

/**
 * {@inheritDoc}
 */
@Override
public Mean copy() {
  Mean result = new Mean();
  // No try-catch or advertised exception because args are guaranteed non-null
  copy(this, result);
  return result;
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/**
 * {@inheritDoc}
 */
@Override
public Mean copy() {
  Mean result = new Mean();
  // No try-catch or advertised exception because args are guaranteed non-null
  copy(this, result);
  return result;
}

代码示例来源:origin: geogebra/geogebra

dest.mean = (Mean) dest.meanImpl;
} else {
  Mean.copy(source.mean, dest.mean);

代码示例来源:origin: io.virtdata/virtdata-lib-realer

dest.mean = (Mean) dest.meanImpl;
} else {
  Mean.copy(source.mean, dest.mean);

相关文章