(int row)
| 3392 | |
| 3393 | |
| 3394 | public double[] getDoubleRow(int row) { |
| 3395 | double[] outgoing = new double[columns.length]; |
| 3396 | for (int col = 0; col < columns.length; col++) { |
| 3397 | outgoing[col] = getDouble(row, col); |
| 3398 | } |
| 3399 | return outgoing; |
| 3400 | } |
| 3401 | |
| 3402 | |
| 3403 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |