[
https://issues.apache.org/jira/browse/MATH-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14704314#comment-14704314
]
Thomas Neidhart edited comment on MATH-1258 at 8/20/15 5:28 AM:
----------------------------------------------------------------
No objections against the patches, they certainly make things more consistent.
was (Author: tn):
No objections to the patches, they certainly make things more consistent.
> compute() method in classes in org.apache.commons.math4.ml.distance package
> ---------------------------------------------------------------------------
>
> Key: MATH-1258
> URL: https://issues.apache.org/jira/browse/MATH-1258
> Project: Commons Math
> Issue Type: Bug
> Reporter: Gunel Jahangirova
> Priority: Minor
> Attachments: patch.diff, pre-MATH-1258.patch
>
>
> Hi!
> There are five classes CanberraDistance, ChebyshevDistance,
> EarthMoversDistance, EuclideanDistance and ManhattanDistance in
> org.apache.commons.math4.ml.distance package, which compute different types
> of distances. Each of them contains method compute(double[] a, double[] b)
> that accepts two double arrays as variables.
> However, if the lengths of array a is greater than the length of array b, the
> method compute() in all the five classes produces
> java.lang.ArrayIndexOutOfBoundsException.
> For example,
> private void test0() {
> CanberraDistance distance = new CanberraDistance();
>
> final double[] a = { 1, 2, 3, 4, 9, 4 };
> final double[] b = { -5, -6, 7, 4, 3 };
> distance.compute(a, b);
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)