Skip to content

Commit

Permalink
Merge branch 'wendy_gh_8487_HGLM_gaussian' of https://github.com/h2oa…
Browse files Browse the repository at this point in the history
…i/h2o-3 into wendy_gh_8487_HGLM_gaussian
  • Loading branch information
wendycwong committed Oct 23, 2024
2 parents 57515d7 + e726e2a commit c9b0c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h2o-core/src/main/java/water/util/ArrayUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ public static void matrixMult(double[][] result, double[][] op1, double[][] op2)

public static void matrixVectorMult(double[] result, double[][] matrix, double[] vector) {
if (result == null)
throw new IllegalArgumentException("result should be a double[] array already allocated.");
throw new IllegalArgumentException("Result should be a double[] array already allocated.");
int numRow = matrix.length;
int numCol = matrix[0].length;
for (int rInd = 0; rInd < numRow; rInd++)
Expand Down

0 comments on commit c9b0c6e

Please sign in to comment.