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 5ef38a38146fe0d02f11b47687ea034699307c6f
parent 2ba857f14c62d612af8f64ecde11891d804a858c
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 31 Aug 2021 11:56:52 +0200

add disclaimer on field numbers in man pages

Diffstat:
Mmax.1 | 4++--
Mmean.1 | 4++--
Mmin.1 | 4++--
Msum.1 | 4++--
4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/max.1 b/max.1 @@ -14,9 +14,9 @@ returns the maximum numerical value for each column in or in standard input, if no .Ar file is given. -Input fields must be tab-separated. +Input fields must be tab-separated and each line must contain the same +number of fields. .Sh SEE ALSO -.Xr awk 1 , .Xr mean 1 , .Xr min 1 , .Xr sum 1 diff --git a/mean.1 b/mean.1 @@ -14,9 +14,9 @@ returns the mean numerical value for each column in or in standard input, if no .Ar file is given. -Input fields must be tab-separated. +Input fields must be tab-separated and each line must contain the same +number of fields. .Sh SEE ALSO -.Xr awk 1 , .Xr max 1 , .Xr min 1 , .Xr sum 1 diff --git a/min.1 b/min.1 @@ -14,9 +14,9 @@ returns the minimum numerical value for each column in or in standard input, if no .Ar file is given. -Input fields must be tab-separated. +Input fields must be tab-separated and each line must contain the same +number of fields. .Sh SEE ALSO -.Xr awk 1 , .Xr max 1 , .Xr mean 1 , .Xr sum 1 diff --git a/sum.1 b/sum.1 @@ -14,9 +14,9 @@ returns the numerical sum for each column in or in standard input, if no .Ar file is given. -Input fields must be tab-separated. +Input fields must be tab-separated and each line must contain the same +number of fields. .Sh SEE ALSO -.Xr awk 1 , .Xr max 1 , .Xr mean 1 , .Xr min 1