tadd manpages - numtools - perform numerical operations on vectors and matrices in unix pipes
 (HTM) git clone git://src.adamsgaard.dk/numtools
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 9f8fb00ec36b31bce8d00e7c757ac292ecbdeff6
 (DIR) parent deca73e239034c66fa6575a65d09303e6e98b621
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Wed, 25 Nov 2020 14:37:10 +0100
       
       add manpages
       
       Diffstat:
         A max.1                               |      21 +++++++++++++++++++++
         A mean.1                              |      22 ++++++++++++++++++++++
         A min.1                               |      21 +++++++++++++++++++++
       
       3 files changed, 64 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/max.1 b/max.1
       t@@ -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
 (DIR) diff --git a/mean.1 b/mean.1
       t@@ -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
 (DIR) diff --git a/min.1 b/min.1
       t@@ -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