UNPKG
ndarray-show
Version:
latest (2.0.0)
2.0.0
1.1.1
1.1.0
1.0.0
display an ndarray
github.com/substack/ndarray-show
substack/ndarray-show
ndarray-show
/
example
/
1d.js
6 lines
(4 loc)
•
117 B
JavaScript
View Raw
1
2
3
4
5
6
var
ndarray =
require
(
'ndarray'
);
var
show =
require
(
'../'
);
var
m =
ndarray
([
1
,
2
,
3
,
4
]);
console
.
log
(
show
(m));