public hypot(value as T) as NDArray<Double>:
Returns the element-wise Euclidean distance with a scalar.
The result is materialized as NDArray<Double>.
NDArray<Double>
a = NDArray<Double>.fromList([3.0, 4.0]) print(a.hypot(4.0))