Initial revision
[LeanCalc.git] / help / isident
1 NAME
2     isident - returns 1 if matrix is an identity matrix
3
4 SYNOPSIS
5     isident(m)
6
7 TYPES
8     m           any
9
10     return      int
11
12 DESCRIPTION
13     This function returns 1 if m is an 2 dimensional identity matrix,
14     0 otherwise.
15
16 EXAMPLE
17     > mat x[3,3] = {1,0,0,0,1,0,0,0,1};
18     > isident(x)
19             1
20
21 LIMITS
22     none
23
24 LINK LIBRARY
25     none
26
27 SEE ALSO
28     mat, matdim, matfill, matmax, matmin, matsum, mattrans,
29     isassoc, isatty, isblk, isconfig, isdefined, iserror, iseven, isfile,
30     ishash, isint, islist, ismat, ismult, isnull, isnum, isobj,
31     isobjtype, isodd, isprime, isrand, israndom, isreal, isrel,
32     issimple, issq, isstr, istype
33