[ 
https://issues.apache.org/jira/browse/STATISTICS-90?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17937468#comment-17937468
 ] 

Alex Herbert commented on STATISTICS-90:
----------------------------------------

IIUC any code built against the 1.1 API should run the same. But re-compiling 
against a 1.2 API would be ambiguous and I have not checked what actually 
happens. I believe it would treat 0 and 1 as int and call the range method. It 
is never ambiguous when we have Range in the method name.

> Support statistic creation using an array range
> -----------------------------------------------
>
>                 Key: STATISTICS-90
>                 URL: https://issues.apache.org/jira/browse/STATISTICS-90
>             Project: Commons Statistics
>          Issue Type: New Feature
>          Components: descriptive
>    Affects Versions: 1.1
>            Reporter: Alex Herbert
>            Priority: Minor
>             Fix For: 1.2
>
>
> Add support for using part of an array to create statistics:
> {code:java}
> double[] x = ...
> int from = ...
> int to = ...
> Min.ofRange(x, from, to);
> DoubleStatistics.ofRange(EnumSet.of(Statistic.MIN), x, from, to);{code}
> This change should have no impact on performance for full length arrays and 
> improve memory consumption by avoiding array copies on sub-ranges. Results 
> from STATISTICS-89 indicate a non-negligible performance gain for fast 
> computing statistics.
> Note: Support for sub-ranges is present in the Commons Math 
> UnivariateStatistic interface. This change will allow supporting replacement 
> of the Math API with Statistics.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to