numeric icon indicating copy to clipboard operation
numeric copied to clipboard

Numerical analysis in Javascript

Results 69 numeric issues
Sort by recently updated
recently updated
newest added

Hi, Here are the updates I've worked on to support broadcasting. As well as broadcasting I worked on allowing mapreduce functions to work over a specified axis. Also I have...

Hi I've patched the code so that it should work as an AMD Module (with requireJS), a node module (as per commonJS syntax), or a browser global. The declaration style...

Due to how prettyPrint was implemented, 100 would always be rendered as 1e2. Fixed that particular error. Still leaves open the issue of rendering 10000 as 1e4, for example.

Many places in numeric.js create new functions using the Function(...) constructor. Such functions do not have access to the local scope. Therefore they bind to the global "numeric" object, which...

The `numeric.T.eig` function, as implemented in 610f2503976af62df5b650af9298d34043664dc0, looks suspicious: either it's an instance method, then it belongs into `numeric.T.prototype.eig`. But in that case I don't understand its semantics, since you...

This avoids relying on automatic semicolon insertion, to make the code cleaner and avoid pitfalls. The svd module in particular had many unterminated lines, likely due to its Python heritage....

The reciprocal function is broken when applied to a complex number with zero imaginary part. The code path forgot to use a namespace for the result, and also forgot to...

Need to have implementations of eig and svd for complex matrices.

Difficulty: Hard