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

27
help/matdim Normal file
View File

@@ -0,0 +1,27 @@
NAME
matdim - matrix dimension
SYNOPSIS
matdim(m)
TYPES
m matrix
return 1, 2, 3, or 4
DESCRIPTION
Returns the number of indices required to specify elements of the matrix.
EXAMPLE
> mat A[3]; mat B[2,3]; mat C[1, 2:3, 4]; mat D[2, 3, 4, 5]
> print matdim(A), matdim(B), matdim(C), matdim(D)
1 2 3 4
LIMITS
none
LIBRARY
none
SEE ALSO
XXX - fill in