(int n, double sa, double[] sx, int incx)
| 146 | } |
| 147 | |
| 148 | static int dscal_(int n, double sa, double[] sx, int incx) { |
| 149 | return dscal_(new MutableInt(n), new MutableDouble(sa), sx, new MutableInt(incx)); |
| 150 | } |
| 151 | |
| 152 | static int dscal_(MutableInt n, MutableDouble sa, double[] sx, MutableInt incx) { |
| 153 | int i, m, nincx, nn, iincx; |