| www.delorie.com/gnu/docs/emacs-lisp-intro/emacs-lisp-intro_282.html | search |
![]() Buy the book! | |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Now we are nearly ready to print the whole graph.
The function to print the graph with the proper labels follows the outline we created earlier (see section A Graph with Labelled Axes), but with additions.
Here is the outline:
(defun print-graph (numbers-list)
"documentation..."
(let ((height ...
...))
(print-Y-axis height ... )
(graph-body-print numbers-list)
(print-X-axis ... )))
|
Changes for the Final Version A few changes. C.4.1 Testing print-graphRun a short test. C.4.2 Graphing Numbers of Words and Symbols Executing the final code. C.4.3 A lambdaExpression: Useful AnonymityHow to write an anonymous function. C.4.4 The mapcarFunctionApply a function to elements of a list. C.4.5 Another Bug ... Most Insidious Yet another bug ... most insidious. C.4.6 The Printed Graph The graph itself!
| webmaster donations bookstore | delorie software privacy |
| Copyright © 2003 by The Free Software Foundation | Updated Jun 2003 |