numtools

perform numerical operations on vectors and matrices in unix pipes
git clone git://src.adamsgaard.dk/numtools # fast
git clone https://src.adamsgaard.dk/numtools.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit d7ec07cf8c41de0a001237eded7af64e8868b345
parent d97e551d2b850c6ce5f835281beec71baa94f4c0
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  9 May 2022 17:55:04 +0200

range.c: add missing newline char to output

Diffstat:
Mrange.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/range.c b/range.c @@ -74,6 +74,7 @@ main(int argc, char *argv[]) printf(fmtstr, pow(10, minv + i * dx)); else printf(fmtstr, minv + i * dx); + putchar('\n'); } return 0;