UNPKG
@sgratzl/science
Version:
latest (2.0.0)
2.0.0
Scientific and statistical computing in JavaScript.
github.com/sgratzl/science.js
sgratzl/science.js
@sgratzl/science
/
src
/
lin
/
length.js
6 lines
(4 loc)
•
101 B
JavaScript
View Raw
1
2
3
4
5
6
import
dot
from
'./dot'
;
export
default
function
length
(
p
) {
return
Math
.
sqrt
(
dot
(p, p)); };