Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #201 Euclidean norm

Calculate n, the Euclidean norm of data, where data is a list of floating point values.

var n = Math.hypot.apply(null, data)

If support for older browsers is necessary.
const n = Math.hypot(...data)

Spread syntax requires ES6 or newer
n = norm2( data )

data may be a multidimensional array (e.g. data(:,:)). n is the Frobenius norm if data is a 2-dimensional array (matrix).

New implementation...
< >
Bart