No description
Find a file
jlp765 31dfea23d2
Merge pull request #3 from lsherwin10/fmod-to-mod
smath.nim: replaced fmod calls with mod (fmod deprecated 6/19)
2021-08-25 17:15:55 +10:00
src replaced fmod calls with mod (fmod deprecated 6/19) 2021-08-24 10:51:39 -04:00
tests lift ln proc from math 2018-04-03 19:19:20 +02:00
.gitignore add (emacs) auto save files to .gitignore 2018-03-29 12:38:44 +02:00
LICENSE Initial commit 2015-10-06 11:54:18 +10:00
README.org Update README.org 2019-08-24 11:18:21 +10:00
seqmath.nimble Update seqmath.nimble 2019-08-24 11:14:09 +10:00

seqmath

Nim sequence math library for sequences and nested sequences

This is aimed at doing simple sequence and nested sequence maths.

It is loosely based on the functionality of SciPy.org's NumPy for the Python language.

It is NOT a wiz-bang linear algebra, vector, matrix, statistical, financial, … libray, but hopefully it will save you from re-inventing the wheel, if you are only after the basics.

It also lifts all (let me know if not) of the single parameter scalar procs from the Nim math library to work with sequences and nested sequences. Currently it cannot lift procs like arctan2 that take two parameters.

Use the liftScalarProc() template to lift your own scalar procs to work with sequences and nested sequences.

To be added

A random list of things, which should be added.

  • add tests for the new procs
  • min(a, axis=1) etc.