MCPcopy Create free account
hub / github.com/bwaldvogel/liblinear-java / dnrm2_

Method dnrm2_

src/main/java/de/bwaldvogel/liblinear/Blas.java:5–7  ·  view source on GitHub ↗
(int n, double[] x, MutableInt incx)

Source from the content-addressed store, hash-verified

3class Blas {
4
5 static double dnrm2_(int n, double[] x, MutableInt incx) {
6 return dnrm2_(new MutableInt(n), x, incx);
7 }
8
9 private static double dnrm2_(MutableInt n, double[] x, MutableInt incx) {
10 final double norm;

Callers 1

newtonMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected