source: CGBLisp/doc/printer.txt@ 1

Last change on this file since 1 was 1, checked in by Marek Rychlik, 15 years ago

First import of a version circa 1997.

File size: 1.2 KB
Line 
1
2;;; POLY-PRINT (plist vars &optional (stream t)) [FUNCTION]
3;;; Prints a polynomial or a list of polynomials PLIST using infix
4;;; syntax compatible with most software systems. The following data
5;;; representations are assumed: 1) Polynomial list is ([ poly1 poly2
6;;; ...) 2) Polynomial is a list (term1 term2 ...)
7;;; 3) Term is (monom . number)
8;;; 4) Monom is (number1 number2 ...) and is a list of powers at
9;;; corresponding variables
10;;; Variable names must be provided to the printer explicitly.
11;;;
12;;; POLY-PRINT-1 (p vars &optional (stream t)) [FUNCTION]
13;;; An auxillary function of POLY-PRINT. It prints a single polynomial P.
14;;;
15;;; POLY-PRINT-2 (plist vars stream &optional (beg t)) [FUNCTION]
16;;; An auxillary function of POLY-PRINT. It prints a comma-separated list
17;;; of polynomials PLIST.
18;;;
19;;; PRINT-TERM (l vars &optional (stream t) beg) [FUNCTION]
20;;; An auxillary function of POLY-PRINT. It prints a single term L.
21;;;
22;;; PRINT-MONOM (l vars &optional (stream t) beg) [FUNCTION]
23;;; An auxillary function of POLY-PRINT. It prints a single monomial L.
24;;;
Note: See TracBrowser for help on using the repository browser.