Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including nd4js with all npm packages installed. Try it out:

const nd = require('nd4js@1.3.0') // <- 1st line is auto-generated const a = nd.array( [[10, 0, 0], [ 0, 0,100], [ 0,1000, 0]] ) console.log('A =\n' + a) const a2 = a.mapElems(x => x*2) console.log('2a = \n' + a2) const v = nd.tabulate([3,1], (i,j) => i+1) console.log('v =\n' + v) const apv = nd.zip_elems([a,v], (x,y) => x+y) console.log('A + v = \n' + apv) const av = nd.la.matmul(a,v) console.log('A v =\n' + av)

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

nd4js v1.3.0

NumPy-style nd-array and linear algebra library that respects your freedom.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free