Adds a number to this NDArray element-wise. Examples jshell> NDArray array = manager.create(new float[] {1f, 2f}); jshell> array.add(2f); ND: (2) cpu() float32 [3., 4.] @param n the number to add @return the result NDArray
(Number n)
| 1393 | * @return the result {@code NDArray} |
| 1394 | */ |
| 1395 | NDArray add(Number n); |
| 1396 | |
| 1397 | /** |
| 1398 | * Adds other {@code NDArray}s to this {@code NDArray} element-wise. |
no outgoing calls