numericalnim icon indicating copy to clipboard operation
numericalnim copied to clipboard

A collection of numerical methods written in Nim

Results 6 numericalnim issues
Sort by recently updated
recently updated
newest added

- Remove recent major changes, they aren't very recent anymore. - The Gitter channels aren't really relevant either. Link to Science channel on Matrix and Discord instead. - Add link...

Stage 1: Improve the error messages (specifically `trimAndSortDataset`) Stage 2: improve error handling. Some universal @scinim way of reporting back non-fatal error to the user. For example that the maximum...

```nim var ptsCoord = newSeq[array[2, float]]() # corners ptsCoord.add([-200.0,-150.0]) ptsCoord.add([-200.0,150.0]) ptsCoord.add([200.0,-150.0]) ptsCoord.add([200.0,150.0]) var ptsValue = @[0.0,1.0,4.0,5.0] # extra pts ptsCoord.add([0.0,-150.0]) ptsCoord.add([0.0,150.0]) ptsCoord.add([0.0,0.0]) ptsValue.add(8.0) ptsValue.add(1.0) ptsValue.add(1.0) let bary = newBarycentric2D(ptsCoord.toTensor(), ptsValue.toTensor())...

I need to separate the internal util procs I'm using and the ones like `Vector` which should be exported to the user. I should possibly rename the exported module something...

Hello. Another algorithm, this time it is Verners 7th order algorithm. Tests work fine, only the vector high precision one takes a little longer. I think that is just the...