(int n, double[] x, MutableInt incx)
| 3 | class 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; |