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

I needed the logspace utility for a pet project of mine, thought I might as well push it upstream.

Conjugate gradient and BiCGSTAB are implemented.

Adds a new build object, `numeric-$ver.amd.js`, which is a version of numeric suitable for [AMD](http://requirejs.org/docs/whyamd.html). This file is created by catting a simple prelude and postlude around the existing library....

Note: I wasn't be able to run build.sh as I'm not working on Linux machine ATM :-(

a javascript implementation of Newton solver, which is ported from GSL (GNU Scientific Library) 's globally convergent Newton method (gsl-1.15\multiroots\gnewton.c) This Newton solver has been successfully used to implement a...

Hi Sébastien I'm trying to find a javascript library for doing weighted linear regression, but so far haven't had any luck. Do you know where I could find a solution...

I noticed some errors on computing the eigenvalues of zero matrices (matrices consisting of all zeros). Test definitions: ``` IN> numeric.eig([0]) OUT> {lambda: {x: [0], y: [0]}, E: {x: [1],...

Receive the following error when attempting to use the "exp" function on a complex array: > > a = numeric.fft(0,1) > > {x: 0, y: 1} > > a.exp() >...

It would be useful to have the functionality to only return the k largest singular values when numeric.svd() is called. Example: add a parameter the the svd function: numeric.svd(A,k) where...

Example applications: I have small toy demos in the workshop but if there are larger applications outside the workshop, it would be nice to link to them.

Difficulty: Easy