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 9f8fb00ec36b31bce8d00e7c757ac292ecbdeff6
parent deca73e239034c66fa6575a65d09303e6e98b621
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed, 25 Nov 2020 14:37:10 +0100

add manpages

Diffstat:
Amax.1 | 21+++++++++++++++++++++
Amean.1 | 22++++++++++++++++++++++
Amin.1 | 21+++++++++++++++++++++
3 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/max.1 b/max.1 @@ -0,0 +1,21 @@ +.Dd $Mdocdate$ +.Dt MAX 1 +.Os +.Sh NAME +.Nm max +.Nd returns the maximum value for each column +.Sh SYNOPSIS +.Nm +.Op Ar file +.Sh DESCRIPTION +The +.Nm +returns the maximum numerical value for each column in +.Ar file +or in standard input, if no file is given. +Input fields must be tab-separated. +.Sh SEE ALSO +.Xr mean 1 +.Xr min 1 +.Sh AUTHORS +.An Anders Damsgaard Aq Mt anders@adamsgaard.dk diff --git a/mean.1 b/mean.1 @@ -0,0 +1,22 @@ +.Dd $Mdocdate$ +.Dt MEAN 1 +.Os +.Sh NAME +.Nm mean +.Nd returns the average value for each column +.Sh SYNOPSIS +.Nm +.Op Ar file +.Sh DESCRIPTION +The +.Nm +returns the mean numerical value for each column in +.Ar file +or in standard input, if no file is given. +Input fields must be tab-separated. +.Sh SEE ALSO +.Xr awk 1 +.Xr max 1 +.Xr min 1 +.Sh AUTHORS +.An Anders Damsgaard Aq Mt anders@adamsgaard.dk diff --git a/min.1 b/min.1 @@ -0,0 +1,21 @@ +.Dd $Mdocdate$ +.Dt MIN 1 +.Os +.Sh NAME +.Nm min +.Nd returns the minimum value for each column +.Sh SYNOPSIS +.Nm +.Op Ar file +.Sh DESCRIPTION +The +.Nm +returns the minimum numerical value for each column in +.Ar file +or in standard input, if no file is given. +Input fields must be tab-separated. +.Sh SEE ALSO +.Xr mean 1 +.Xr min 1 +.Sh AUTHORS +.An Anders Damsgaard Aq Mt anders@adamsgaard.dk