During my years on Python development, I\'ve always been amazed at how much much much faster things become if you manage to rewrite that code that loops though your ndarray and
scijs's ndarray is also good. link
var mat = ndarray(new Float64Array([1, 0, 0, 1]), [2,2]) //Now: // // mat = 1 0 // 0 1 //