- Timestamp:
- 2015-06-23T10:28:54-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3328 r3329 74 74 &allow-other-keys 75 75 ) 76 "The following INITIALIZE-INSTANCE method allows instance initialization in a style similar to MAKE-ARRAY, e.g. 76 "The following INITIALIZE-INSTANCE method allows instance initialization 77 of a MONOM in a style similar to MAKE-ARRAY, e.g.: 77 78 78 79 (MAKE-INSTANCE :EXPONENTS '(1 2 3)) --> #<MONOM EXPONENTS=#(1 2 3)> 79 80 (MAKE-INSTANCE :DIMENSION 3) --> #<MONOM EXPONENTS=#(0 0 0)> 80 81 (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM EXPONENTS=#(7 7 7)> 82 83 If both DIMENSION and EXPONENTS are supplied, they must be compatible, 84 i.e. the length of EXPONENTS must be equal DIMENSION. If EXPONENTS 85 is not supplied, a monom with repeated value EXPONENT is created. 86 By default EXPONENT is 0, which results in a constant monomial. 81 87 " 82 88 (cond
Note:
See TracChangeset
for help on using the changeset viewer.