/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/ |
StepInterpolator.java | 7 * the License. You may obtain a copy of the License at 39 * {@link #copy()} method. 79 * specific state must be preserved, a copy of the instance must be 80 * created using {@link #copy()}.</p> 121 /** Copy the instance. 125 * @return a deep copy of the instance, which can be used independently. 130 StepInterpolator copy() throws DerivativeException; method in interface:StepInterpolator
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
StorelessUnivariateStatistic.java | 7 * the License. You may obtain a copy of the License at 80 * Returns a copy of the statistic with the same internal state. 82 * @return a copy of the statistic 84 StorelessUnivariateStatistic copy(); method in interface:StorelessUnivariateStatistic
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
FirstMoment.java | 7 * the License. You may obtain a copy of the License at 84 * Copy constructor, creates a new {@code FirstMoment} identical 87 * @param original the {@code FirstMoment} instance to copy 91 copy(original, this); method 139 public FirstMoment copy() { method in class:FirstMoment 141 copy(this, result); method 149 * @param source FirstMoment to copy 150 * @param dest FirstMoment to copy to 153 public static void copy(FirstMoment source, FirstMoment dest) { method in class:FirstMoment
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
Max.java | 7 * the License. You may obtain a copy of the License at 60 * Copy constructor, creates a new {@code Max} identical 63 * @param original the {@code Max} instance to copy 66 copy(original, this); method 144 public Max copy() { method in class:Max 146 copy(this, result); method 154 * @param source Max to copy 155 * @param dest Max to copy to 158 public static void copy(Max source, Max dest) { method in class:Max
|
Min.java | 7 * the License. You may obtain a copy of the License at 60 * Copy constructor, creates a new {@code Min} identical 63 * @param original the {@code Min} instance to copy 66 copy(original, this); method 144 public Min copy() { method in class:Min 146 copy(this, result); method 154 * @param source Min to copy 155 * @param dest Min to copy to 158 public static void copy(Min source, Min dest) { method in class:Min
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/ |
SumOfLogs.java | 7 * the License. You may obtain a copy of the License at 67 * Copy constructor, creates a new {@code SumOfLogs} identical 70 * @param original the {@code SumOfLogs} instance to copy 73 copy(original, this); method 146 public SumOfLogs copy() { method in class:SumOfLogs 148 copy(this, result); method 156 * @param source SumOfLogs to copy 157 * @param dest SumOfLogs to copy to 160 public static void copy(SumOfLogs source, SumOfLogs dest) { method in class:SumOfLogs
|
SumOfSquares.java | 7 * the License. You may obtain a copy of the License at 58 * Copy constructor, creates a new {@code SumOfSquares} identical 61 * @param original the {@code SumOfSquares} instance to copy 64 copy(original, this); method 134 public SumOfSquares copy() { method in class:SumOfSquares 136 copy(this, result); method 144 * @param source SumOfSquares to copy 145 * @param dest SumOfSquares to copy to 148 public static void copy(SumOfSquares source, SumOfSquares dest) { method in class:SumOfSquares
|
/external/caliper/examples/src/main/java/examples/ |
ArraySortBenchmark.java | 6 * You may obtain a copy of the License at 36 private int[] copy; field in class:ArraySortBenchmark 40 copy = new int[length]; 45 System.arraycopy(values, 0, copy, 0, values.length); 46 Arrays.sort(copy);
|