Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

29
help/matmax Normal file
View File

@@ -0,0 +1,29 @@
NAME
matmax - maximum value for specified index of matrix
SYNOPSIS
matmax(m, i)
TYPES
m matrix
i 0, 1, 2, 3
return integer
DESCRIPTION
Returns the maximum value for i-th index (i counting from zero)
for the matrix m.
EXAMPLE
> mat A[3]; mat B[1:3, -4:4, 5]
> print matmax(A,0), matmax(B,0), matmax(B,1), matmax(B,2)
2 3 4 4
LIMITS
i < matdim(m)
LIBRARY
none
SEE ALSO
XXX - fill in