Specifies multiple quantile indexes to be calculated, each index being the k in the kth q-quantile. @param indexes the quantile indexes, each of which must be in the inclusive range [0, q] for q-quantiles; the order of the indexes is unimportant, duplicates will be ignored, and the set will
(int... indexes)
| 201 | |
| 202 | |
| 203 | public ScaleAndIndexes indexes(int... indexes) { |
| 204 | return new ScaleAndIndexes(scale, indexes.clone()); |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Specifies multiple quantile indexes to be calculated, each index being the k in the kth |