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

28
help/matsum Normal file
View File

@@ -0,0 +1,28 @@
NAME
matsum - sum the elements of a matrix
SYNOPSIS
matsum(m)
TYPES
m matrix with any types of elements
return number
DESCRIPTION
Returns the sum of the numeric (real or complex) elements of m.
Non-numeric elements are ignored.
EXAMPLE
> mat A[2,2] = {1, 2, 3, list(1,2,3)}
print matsum(A)
6
LIMITS
none
LIBRARY
void matsum(MATRIX *m, VALUE *vres);
SEE ALSO
XXX - fill in