klyn.math.NDArray.hypot
method
public hypot(value as T) as NDArray<Double>:
Description

Returns the element-wise Euclidean distance with a scalar.

The result is materialized as NDArray<Double>.

a = NDArray<Double>.fromList([3.0, 4.0])
print(a.hypot(4.0))