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

It seems like the library doesn't support these.

``` //tested with numeric.js version 1.2.6 var countsMatrix = [[0,0,1,1,0,0,0,0,0],[0,0,0,0,0,1,0,0,1],[0,1,0,0,0,0,0,1,0],[0,0,0,0,0,0,1,0,1],[1,0,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1],[1,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,1],[0,0,0,0,0,2,0,0,1],[1,0,1,0,0,0,0,1,0],[0,0,0,1,1,0,0,0,0]]; var svd = numeric.svd(countsMatrix); var U = svd.U; var UTranspose = numeric.transpose(U); //U should be a unitary matrix, so transpose(U)...

`numeric.transpose([1,2,3,4])` Results in `[ ]`

How to implement constrained optimization? - Which algorithm to use? Barrier method? - How much derivative information is needed for constraint function(s)? How to pass constraint function(s)? Is it an...

Difficulty: Hard

The following input to qpsolve: Dmat: [13,18,-6] [18,27,-9] [-6,-9,4] dvec: [-4,0,-100] Amat: [0] [0] [-1] bvec: [-25] produces the solution vector: [21:56:14.131] x:-3.999999999999967 y:-30.666666666666707 z:-100.00000000000006 which is incorrect as best...

I wasn't sure where else to post this question. It's not technically a bug but more a missing feature. I'm porting some code I originally wrote in python/numpy, into javascript/numeric....

I am trying to bin an intergration. So I have some complicated function that needs to be calulated effeciently. I run dopri on it to some big t. Now I...

Firefox 40 is currently the alpha/aurora/developer edition release. Loading numeric prints many warnings to the console of the form ``` SyntaxError: unreachable code after return statement numeric-1.2.6.js:3:54 SyntaxError: unreachable code...

Currently using numeric: version 1.2.4 extensively, throughout my application. Was trying to upgrade to 1.2.6 and received ReferenceError: round is not defined. Other functions seem to be miss behaving also....

This warning was being logged to the console whenever there was a doubled semicolon after a return statement, because there is an unreachable (empty) statement between the semicolons. Regularize the...