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

Method daxpy_

src/main/java/de/bwaldvogel/liblinear/Blas.java:104–106  ·  view source on GitHub ↗
(int n, double sa, double[] sx, int incx, double[] sy, int incy)

Source from the content-addressed store, hash-verified

102 }
103
104 static int daxpy_(int n, double sa, double[] sx, int incx, double[] sy, int incy) {
105 return daxpy_(new MutableInt(n), new MutableDouble(sa), sx, new MutableInt(incx), sy, new MutableInt(incy));
106 }
107
108 static int daxpy_(MutableInt n, MutableDouble sa, double[] sx, MutableInt incx, double[] sy, MutableInt incy) {
109 int i, m, ix, iy, nn, iincx, iincy;

Callers 1

pcgMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected