1 ;;Copyright William F. Schelter 1990, All Rights Reserved
3 ;; Time-stamp: "2022-03-28 12:59:37 villate"
10 /* plot of z^
(1/3)...
*/
11 plot3d
(r^
.33*cos
(th/3),[r
,0,1],[th
,0,6*%pi
],['grid
,12,80],['transform_xy
,polar_to_xy
],['plot_format
,geomview
]);
13 /* plot of z^
(1/2)...
*/
14 plot3d
(r^
.5*cos
(th/2),[r
,0,1],[th
,0,6*%pi
],['grid
,12,80],['transform_xy
,polar_to_xy
],['plot_format
,xmaxima
]);
17 plot3d
([cos
(x)*(3+y
*cos
(x/2)),sin
(x)*(3+y
*cos
(x/2)),y
*sin
(x/2)],[x
,-%pi
,%pi
],[y
,-
1,1],['grid
,50,15]);
20 plot3d
([5*cos
(x)*(cos(x/2)*cos
(y)+sin
(x/2)*sin
(2*y
)+3.0) -
10.0,
21 -
5*sin
(x)*(cos(x/2)*cos
(y)+sin
(x/2)*sin
(2*y
)+3.0),
22 5*(-sin(x/2)*cos
(y)+cos
(x/2)*sin
(2*y
))],[x
,-%pi
,%pi
],[y
,-%pi
,%pi
],
25 plot3d
([cos
(y)*(10.0
+6*cos
(x)), sin
(y)*(10.0
+6*cos
(x)),-
6*sin
(x)],
26 [x
,0,2*%pi
],[y
,0,2*%pi
],['grid
,40,40]);
29 (defclass gnuplot-plot
()
30 ((data :initarg
:data
:initform
"")
31 (pipe :initarg
:pipe
:initform nil
)))
33 (defclass xmaxima-plot
()
34 ((data :initarg
:data
:initform
"")
35 (pipe :initarg
:pipe
:initform nil
)))
37 (defclass geomview-plot
()
38 ((data :initarg
:data
:initform
"")
39 (pipe :initarg
:pipe
:initform nil
)))
41 (defgeneric plot-preamble
(plot options
)
42 (:documentation
"Plots the preamble for a plot."))
44 (defgeneric plot2d-command
(plot fun options range
)
45 (:documentation
"Writes the command that creates a plot."))
47 (defgeneric plot3d-command
(plot functions options titles
)
48 (:documentation
"Writes the command that creates a plot."))
50 (defgeneric plot-shipout
(plot options
&optional output-file
)
51 (:documentation
"Sends the plot commands to the graphic program."))
53 (defun ensure-string (x)
56 ((symbolp x
) (print-invert-case (stripdollar x
)))
57 (t (maybe-invert-string-case (string (implode (strgrind x
)))))))
60 (if (and ($listp x
) ($listp y
))
61 (cons '(mlist) (loop for w in
(cdr x
) for u in
(cdr y
) collect w collect u
))
62 (merror (intl:gettext
"join: both arguments must be lists."))))
64 (defun coerce-float (x) ($float
(meval* x
)))
66 (defvar *maxima-plotdir
* "")
67 (declare-top (special *maxima-tempdir
* *maxima-prefix
*))
69 ;; *ROT* AND FRIENDS ($ROT, $ROTATE_PTS, $ROTATE_LIST) CAN PROBABLY GO AWAY !!
70 ;; THEY ARE UNDOCUMENTED AND UNUSED !!
71 (defvar *rot
* (make-array 9 :element-type
'flonum
))
74 ;; Global plot options list; this is a property list.. It is not a
75 ;; Maxima variable, to discourage users from changing it directly; it
76 ;; should be changed via set_plot_option
78 (defvar *plot-options
*
79 '(:plot_format $gnuplot_pipes
80 :grid
(30 30) :run_viewer t
:axes t
81 ;; With adaptive plotting, 29 nticks should be enough; adapt_depth
82 ;; controls the number of splittings adaptive-plotting will do.
83 :nticks
29 :adapt_depth
5
84 :color
($blue $red $green $magenta $black $cyan
)
85 :point_type
($bullet $box $triangle $plus $times $asterisk
)
86 :palette
(((mlist) $gradient $green $cyan $blue $violet
)
87 ((mlist) $gradient $magenta $violet $blue $cyan $green $yellow
88 $orange $red $brown $black
))
89 :gnuplot_preamble
"" :gnuplot_term $default
))
92 '((mlist) ((mlist) $plot_format $gnuplot_pipes
)))
94 ;; $plot_realpart option is false by default but *plot-realpart* is true
95 ;; because coerce-float-fun is used outside of plot package too.
96 (defvar *plot-realpart
* t
)
98 (defun maybe-realpart (x)
101 (if (zerop1 ($imagpart x
))
105 (defvar *missing-data-indicator
* "NaN")
107 (defvar *gnuplot-stream
* nil
)
108 (defvar *gnuplot-command
* "")
110 (defvar $gnuplot_command
"gnuplot")
112 (defun start-gnuplot-process (path)
113 ;; TODO: Forward gnuplot's stderr stream to maxima's stderr output
114 #+clisp
(setq *gnuplot-stream
* (ext:make-pipe-output-stream path
))
115 ;; TODO: Forward gnuplot's stderr stream to maxima's stderr output
116 #+lispworks
(setq *gnuplot-stream
* (system:open-pipe path
))
117 #+cmu
(setq *gnuplot-stream
*
118 (ext:process-input
(ext:run-program path nil
:input
:stream
119 :output
*error-output
* :wait nil
)))
120 #+scl
(setq *gnuplot-stream
*
121 (ext:process-input
(ext:run-program path nil
:input
:stream
122 :output
*error-output
* :wait nil
)))
123 #+sbcl
(setq *gnuplot-stream
*
124 (sb-ext:process-input
(sb-ext:run-program path nil
126 :output
*error-output
* :wait nil
128 #+gcl
(setq *gnuplot-stream
*
129 (open (concatenate 'string
"| " path
) :direction
:output
))
131 (setq *gnuplot-stream
* (ext:run-program path nil
:input
:stream
:output
*error-output
* :error
:output
:wait nil
)))
132 #+ccl
(setf *gnuplot-stream
*
133 (ccl:external-process-input-stream
134 (ccl:run-program path nil
135 :wait nil
:output
*error-output
*
137 #+allegro
(setf *gnuplot-stream
* (excl:run-shell-command
138 path
:input
:stream
:output
*error-output
* :wait nil
))
139 #+abcl
(setq *gnuplot-stream
* (system::process-input
(system::run-program path nil
:wait nil
)))
140 #-
(or clisp cmu sbcl gcl scl lispworks ecl ccl allegro abcl
)
141 (merror (intl:gettext
"plotting: I don't know how to tell this Lisp to run Gnuplot."))
143 (if (null *gnuplot-stream
*)
144 (merror (intl:gettext
"plotting: I tried to execute ~s but *GNUPLOT-STREAM* is still null.~%") path
))
146 ;; set mouse must be the first command send to gnuplot
147 (send-gnuplot-command "set mouse"))
149 (defun check-gnuplot-process ()
150 (if (null *gnuplot-stream
*)
151 (start-gnuplot-process $gnuplot_command
)))
153 (defmfun $gnuplot_close
()
154 (stop-gnuplot-process)
157 (defmfun $gnuplot_start
()
158 (check-gnuplot-process)
161 (defmfun $gnuplot_restart
()
165 (defmfun $gnuplot_send
(command)
166 (send-gnuplot-command command
))
168 (defun stop-gnuplot-process ()
169 (unless (null *gnuplot-stream
*)
171 (close *gnuplot-stream
*)
172 (setq *gnuplot-stream
* nil
))))
174 (defun send-gnuplot-command (command &optional recursive
)
175 (if (null *gnuplot-stream
*)
176 (start-gnuplot-process $gnuplot_command
))
177 (handler-case (unless (null command
)
178 (format *gnuplot-stream
* "~a ~%" command
)
179 (finish-output *gnuplot-stream
*))
181 ;; allow gnuplot to restart if stream-error, or just an error is signaled
182 ;; only try to restart once, to prevent an infinite loop
186 (warn "~a~%Trying new stream.~%" e
)
187 (setq *gnuplot-stream
* nil
)
188 (send-gnuplot-command command t
))))))
190 (defmfun $gnuplot_reset
()
191 (send-gnuplot-command "unset output")
192 (send-gnuplot-command "reset"))
194 (defmfun $gnuplot_replot
(&optional s
)
195 (if (null *gnuplot-stream
*)
196 (merror (intl:gettext
"gnuplot_replot: Gnuplot is not running.")))
198 (send-gnuplot-command "replot"))
200 (send-gnuplot-command s
)
201 (send-gnuplot-command "replot"))
203 (merror (intl:gettext
"gnuplot_replot: argument, if present, must be a string; found: ~M") s
)))
206 ;; allow this to be set in a system init file (sys-init.lsp)
208 (defmfun $get_plot_option
(&optional name n
)
210 ;; Converts the options property list into a Maxima list
211 (do* ((list (copy-tree *plot-options
*) (cddr list
))
212 (key (first list
) (first list
))
213 (value (second list
) (second list
)))
215 (let ((max-key (intern (concatenate 'string
"$" (symbol-name key
)))))
217 (push (cons '(mlist) (cons max-key value
)) options
)
218 (push (list '(mlist) max-key value
) options
))))
219 (setf options
(cons '(mlist) (nreverse options
)))
221 (let ((value (find name
(cdr options
) :key
#'second
)))
227 (defun quote-strings (opt)
230 (format nil
"~s" opt
)
232 (cons (quote-strings (car opt
))
233 (quote-strings (cdr opt
)))))
235 (defun get-plot-option-string (option &optional
(index 1))
236 (let* ((val ($get_plot_option option
2))
237 (val-list (if ($listp val
)
240 (ensure-string (nth (mod (- index
1) (length val-list
)) val-list
))))
242 (defmfun $set_plot_option
(&rest value
)
243 (setq *plot-options
* (plot-options-parser value
*plot-options
*))
246 (defmfun $remove_plot_option
(name)
249 ($adapt_depth
:adapt_depth
) ($axes
:axes
) ($azimuth
:azimuth
)
250 ($box
:box
) ($color
:color
) ($color_bar
:color_bar
)
251 ($color_bar_tics
:color_bar_tics
) ($elevation
:elevation
)
252 ($grid
:grid
) ($grid2d
:grid2d
) ($iterations
:iterations
)
253 ($label
:label
) ($legend
:legend
) ($levels
:levels
)
254 ($logx
:logx
) ($logy
:logy
)
255 ($mesh_lines_color
:mesh_lines_color
) ($nticks
:nticks
)
256 ($palette
:palette
) ($plotepsilon
:plotepsilon
)
257 ($plot_format
:plot_format
) ($plot_realpart
:plot_realpart
)
258 ($point_type
:point_type
) ($pdf_file
:pdf_file
)
259 ($png_file
:png_file
) ($ps_file
:ps_file
)
260 ($run_viewer
:run_viewer
) ($same_xy
:samexy
)
261 ($same_xyz
:same_xyz
) ($sample
:sample
) ($style
:style
)
262 ($svg_file
:svg_file
) ($t
:t
) ($title
:title
)
263 ($transform_xy
:transform_xy
) ($window
:window
) ($x
:x
)
264 ($xbounds
:xbounds
) ($xlabel
:xlabel
) ($xtics
:xtics
)
265 ($xy_scale
:xy_scale
) ($y
:y
) ($ybounds
:ybounds
) ($ylabel
:ylabel
)
266 ($ytics
:ytics
) ($yx_ratio
:yx_ratio
) ($z
:z
) ($zlabel
:zlabel
)
267 ($zmin
:zmin
) ($ztics
:ztics
)
268 ($gnuplot_4_0
:gnuplot_4_0
)
269 ($gnuplot_curve_titles
:gnuplot_curve_titles
)
270 ($gnuplot_curve_styles
:gnuplot_curve_styles
)
271 ($gnuplot_default_term_command
:gnuplot_default_term_command
)
272 ($gnuplot_dumb_term_command
:gnuplot_dumb_term_command
)
273 ($gnuplot_out_file
:gnuplot_out_file
)
274 ($gnuplot_pm3d
:gnuplot_pm3d
)
275 ($gnuplot_strings
:gnuplot_strings
)
276 ($gnuplot_preamble
:gnuplot_preamble
)
277 ($gnuplot_postamble
:gnuplot_postamble
)
278 ($gnuplot_pdf_term_command
:gnuplot_pdf_term_command
)
279 ($gnuplot_png_term_command
:gnuplot_png_term_command
)
280 ($gnuplot_ps_term_command
:gnuplot_ps_term_command
)
281 ($gnuplot_svg_term_command
:gnuplot_svg_term_command
)
282 ($gnuplot_term
:gnuplot_term
))))
284 (defun get-gnuplot-term (term)
285 (let* ((sterm (string-downcase (ensure-string term
)))
286 (pos (search " " sterm
)))
291 (defvar $pstream nil
)
293 (defun print-pt1 (f str
)
295 (format str
"~,,,,,,'eg " f
)
296 (format str
"~a " *missing-data-indicator
*)))
298 (defstruct (polygon (:type list
)
299 (:constructor %make-polygon
(pts edges
)))
300 (dummy '($polygon simp
))
305 #-gcl
(:compile-toplevel
:execute
)
307 (defmacro z-pt
(ar i
) `(aref ,ar
(the fixnum
(+ 2 (* ,i
3)))))
308 (defmacro y-pt
(ar i
) `(aref ,ar
(the fixnum
(1+ (* ,i
3)))))
309 (defmacro x-pt
(ar i
) `(aref ,ar
(the fixnum
(* ,i
3))))
310 (defmacro rot
(m i j
) `(aref ,m
(the fixnum
(+ ,i
(the fixnum
(* 3 ,j
))))))
312 (defmacro print-pt
(f)
313 `(print-pt1 ,f $pstream
))
315 (defmacro make-polygon
(a b
)
316 `(list '($polygon
) ,a
,b
)))
318 (defun draw3d (f minx maxx miny maxy nxint nyint
)
319 (let* ((epsx (/ (- maxx minx
) nxint
))
321 (epsy (/ (- maxy miny
) nyint
))
325 (ar (make-array (+ 12 ; 12 for axes
326 (* 3 nx ny
)) :fill-pointer
(* 3 nx ny
)
327 :element-type t
:adjustable t
)))
328 (declare (type flonum x y epsy epsx
)
330 (type (cl:array t
) ar
))
332 initially
(setq y miny
)
338 (setf (z-pt ar l
) (funcall f x y
))
343 (make-polygon ar
(make-grid-vertices nxint nyint
))))
345 ;; The following is 3x2 = 6 rectangles
346 ;; call (make-vertices 3 2)
347 ;; there are 4x3 = 12 points.
348 ;; ordering is x0,y0,z0,x1,y1,z1,....,x11,y11,z11
355 (defun make-grid-vertices (nx ny
)
356 (declare (fixnum nx ny
))
357 (let* ((tem (make-array (+ 15 (* 5 nx ny
)) :fill-pointer
(* 5 nx ny
)
359 :element-type
'(mod #x80000000
)))
364 (declare (fixnum i nxpt m
)
365 (type (cl:array
(mod #x80000000
)) tem
))
366 (loop for k below
(length tem
)
368 (setf (aref tem k
) i
)
369 (setf (aref tem
(incf k
))
371 (setf (aref tem
(incf k
))
373 (setf (aref tem
(incf k
)) i
)
374 (setf (aref tem
(incf k
)) 0) ;place for max
382 (defmfun $rotation1
(phi th
)
383 (let ((sinph (sin phi
))
388 ((mlist simp
) ,(* cosph costh
)
389 ,(* -
1.0 cosph sinth
)
391 ((mlist simp
) ,sinth
,costh
0.0)
392 ((mlist simp
) ,(- (* sinph costh
))
396 ;; pts is a vector of bts [x0,y0,z0,x1,y1,z1,...] and each tuple xi,yi,zi is rotated
397 #-abcl
(defmfun $rotate_pts
(pts rotation-matrix
)
398 (or ($matrixp rotation-matrix
) (merror (intl:gettext
"rotate_pts: second argument must be a matrix.")))
401 (x 0.0) (y 0.0) (z 0.0)
403 (declare (type flonum x y z
))
404 (declare (type (cl:array flonum
) rot
))
405 ($copy_pts rotation-matrix
*rot
* 0)
410 (setq x
(aref pts j
))
411 (setq y
(aref pts
(+ j
1)))
412 (setq z
(aref pts
(+ j
2)))
413 (loop for i below
3 with a of-type flonum
= 0.0
415 (setq a
(* x
(aref rot
(+ (* 3 i
) 0))))
416 (setq a
(+ a
(* y
(aref rot
(+ (* 3 i
) 1)))))
417 (setq a
(+ a
(* z
(aref rot
(+ (* 3 i
) 2)))))
418 (setf (aref pts
(+ j i
)) a
))
421 (defmfun $rotate_list
(x)
422 (cond ((and ($listp x
) (not (mbagp (second x
))))
423 ($list_matrix_entries
(ncmul2 $rot x
)))
424 ((mbagp x
) (cons (car x
) (mapcar '$rotate_list
(cdr x
))))))
426 (defmfun $get_range
(pts k
&aux
(z 0.0) (max most-negative-flonum
) (min most-positive-flonum
))
427 (declare (type flonum z max min
))
428 (declare (type (vector flonum
) pts
))
429 (loop for i from k below
(length pts
) by
3
430 do
(setq z
(aref pts i
))
431 (cond ((< z min
) (setq min z
)))
432 (cond ((> z max
) (setq max z
))))
433 (list min max
(- max min
)))
435 (defmfun $polar_to_xy
(pts &aux
(r 0.0) (th 0.0))
436 (declare (type flonum r th
))
437 (declare (type (cl:array t
) pts
))
438 (assert (typep pts
'(vector t
)))
439 (loop for i below
(length pts
) by
3
440 do
(setq r
(aref pts i
))
441 (setq th
(aref pts
(+ i
1)))
442 (setf (aref pts i
) (* r
(cos th
)))
443 (setf (aref pts
(+ i
1)) (* r
(sin th
)))))
445 ;; Transformation from spherical coordinates to rectangular coordinates,
446 ;; to be used in plot3d. Example of its use:
447 ;; plot3d (expr, [th, 0, %pi], [ph, 0, 2*%pi], [transform_xy, spherical_to_xyz])
448 ;; where expr gives the value of r in terms of the inclination (th)
451 (defmfun $spherical_to_xyz
(pts &aux
(r 0.0) (th 0.0) (ph 0.0))
452 (declare (type flonum r th ph
))
453 (declare (type (cl:array t
) pts
))
454 (assert (typep pts
'(vector t
)))
455 (loop for i below
(length pts
) by
3
456 do
(setq th
(aref pts i
))
457 (setq ph
(aref pts
(+ i
1)))
458 (setq r
(aref pts
(+ i
2)))
459 (setf (aref pts i
) (* r
(sin th
) (cos ph
)))
460 (setf (aref pts
(+ i
1)) (* r
(sin th
) (sin ph
)))
461 (setf (aref pts
(+ i
2)) (* r
(cos th
)))))
464 ;; return a function suitable for the transform function in plot3d.
465 ;; FX, FY, and FZ are functions of three arguments.
466 (defmfun $make_transform
(lvars fx fy fz
)
467 (setq fx
(coerce-float-fun fx lvars
"make_transform"))
468 (setq fy
(coerce-float-fun fy lvars
"make_transform"))
469 (setq fz
(coerce-float-fun fz lvars
"make_transform"))
470 (let ((sym (gensym "transform")))
471 (setf (symbol-function sym
)
472 #'(lambda (pts &aux
(x1 0.0)(x2 0.0)(x3 0.0))
473 (declare (type flonum x1 x2 x3
))
474 (declare (type (cl:array t
) pts
))
475 (loop for i below
(length pts
) by
3
477 (setq x1
(aref pts i
))
478 (setq x2
(aref pts
(+ i
1)))
479 (setq x3
(aref pts
(+ i
2)))
480 (setf (aref pts i
) (funcall fx x1 x2 x3
))
481 (setf (aref pts
(+ 1 i
)) (funcall fy x1 x2 x3
))
482 (setf (aref pts
(+ 2 i
)) (funcall fz x1 x2 x3
)))))))
484 ;; Return value is a Lisp function which evaluates EXPR to a float.
485 ;; COERCE-FLOAT-FUN always returns a function and never returns a symbol,
486 ;; even if EXPR is a symbol.
488 ;; Following cases are recognized:
490 ;; name of a Lisp function
491 ;; name of a Maxima function
492 ;; name of a DEFMSPEC function
493 ;; name of a Maxima macro
494 ;; a string which is the name of a Maxima operator (e.g., "!")
495 ;; name of a simplifying function
496 ;; EXPR is a Maxima lambda expression
497 ;; EXPR is a general Maxima expression
499 ;; %COERCE-FLOAT-FUN is the main internal routine for this.
500 ;; COERCE-FLOAT-FUN is the user interface for creating a function that
501 ;; returns floats. COERCE-BFLOAT-FUN is the same, except bfloats are
503 (defun %coerce-float-fun
(float-fun expr
&rest rest
&aux lvars fname
)
505 (0 (setq lvars nil
) (setq fname
"coerce-float-fun"))
506 (1 (setq lvars
(first rest
)) (setq fname
"coerce-float-fun"))
507 (2 (setq lvars
(first rest
)) (setq fname
(second rest
)))
508 (t (merror (intl:gettext
"coerce-float-fun: two many arguments given."))))
509 (cond ((and (consp expr
) (functionp expr
))
510 (let ((args (if lvars
(cdr lvars
) (list (gensym)))))
511 (coerce-lisp-function-or-lisp-lambda args expr
:float-fun float-fun
)))
512 ;; expr is a string which names an operator
513 ;; (e.g. "!" "+" or a user-defined operator)
514 ((and (stringp expr
) (getopr0 expr
))
515 (let ((a (if lvars lvars
`((mlist) ,(gensym)))))
516 (%coerce-float-fun float-fun
`(($apply
) ,(getopr0 expr
) ,a
) a fname
)))
517 ((and (symbolp expr
) (not (member expr lvars
)) (not ($constantp expr
)))
520 (let ((args (if lvars
(cdr lvars
) (list (gensym)))))
521 (coerce-lisp-function-or-lisp-lambda args expr
:float-fun float-fun
)))
522 ;; expr is name of a Maxima function defined by := or
526 ((mexpr (mget expr
'mexpr
))
527 (args (cdr (second mexpr
))))
528 (coerce-maxima-function-or-maxima-lambda
529 args expr
:float-fun float-fun
)))
531 ;; expr is the name of a function defined by defmspec
533 ;; expr is the name of a Maxima macro defined by ::=
535 ;; expr is the name of a simplifying function, and the
536 ;; simplification property is associated with the noun
538 (get ($nounify expr
) 'operators
)
539 ;; expr is the name of a simplifying function, and the
540 ;; simplification property is associated with the verb
542 (get ($verbify expr
) 'operators
))
543 (let ((a (if lvars lvars
`((mlist) ,(gensym)))))
544 (%coerce-float-fun float-fun
`(($apply
) ,expr
,a
) a fname
)))
546 (merror (intl:gettext
"~a: unknown function: ~M")
548 ((and (consp expr
) (eq (caar expr
) 'lambda
))
549 (let ((args (cdr (second expr
))))
550 (coerce-maxima-function-or-maxima-lambda
551 args expr
:float-fun float-fun
)))
553 (let* ((vars (or lvars
($sort
($listofvars expr
))))
554 (subscripted-vars ($sublist vars
'((lambda) ((mlist) $x
) ((mnot) (($atom
) $x
)))))
555 gensym-vars save-list-gensym subscripted-vars-save
556 subscripted-vars-mset subscripted-vars-restore
)
558 ;; VARS and SUBSCRIPTED-VARS are Maxima lists. Other lists are
560 (when (cdr subscripted-vars
)
561 (setq gensym-vars
(mapcar #'(lambda (ign) (declare (ignore ign
)) (gensym))
562 (cdr subscripted-vars
)))
563 (mapcar #'(lambda (a b
) (setq vars
(subst b a vars
:test
'equal
)))
564 (cdr subscripted-vars
) gensym-vars
)
566 ;; This stuff about saving and restoring array variables
567 ;; should go into MBINDING, and the lambda expression
568 ;; constructed below should call MBINDING. (At present
569 ;; MBINDING barfs on array variables.)
570 (setq save-list-gensym
(gensym))
571 (setq subscripted-vars-save
572 (mapcar #'(lambda (a) `(push (meval ',a
) ,save-list-gensym
))
573 (cdr subscripted-vars
)))
574 (setq subscripted-vars-mset
575 (mapcar #'(lambda (a b
) `(mset ',a
,b
))
576 (cdr subscripted-vars
) gensym-vars
))
577 (setq subscripted-vars-restore
578 (mapcar #'(lambda (a) `(mset ',a
(pop ,save-list-gensym
)))
579 (reverse (cdr subscripted-vars
)))))
583 (declare (special ,@(cdr vars
)))
585 ;; Nothing interpolated here when there are no subscripted
587 ,@(if save-list-gensym
`((declare (special ,save-list-gensym
))))
589 ;; Nothing interpolated here when there are no subscripted
591 ,@(if (cdr subscripted-vars
)
592 `((progn (setq ,save-list-gensym nil
)
593 ,@(append subscripted-vars-save subscripted-vars-mset
))))
595 (let (($ratprint nil
)
596 ;; We don't want to set $numer to T when coercing
597 ;; to a bigfloat. By doing so, things like
598 ;; log(400)^400 get converted to double-floats,
599 ;; which causes a double-float overflow. But the
600 ;; whole point of coercing to bfloat is to use
601 ;; bfloats, not doubles.
603 ;; Perhaps we don't even need to do this for
604 ;; double-floats? It would be nice to remove
605 ;; this. For backward compatibility, we bind
606 ;; numer to T if we're not trying to bfloat.
607 ($numer
,(not (eq float-fun
'$bfloat
)))
609 ;; Catch any errors from evaluating the
610 ;; function. We're assuming that if an error
611 ;; is caught, the result is not a number. We
612 ;; also assume that for such errors, it's
613 ;; because the function is not defined there,
614 ;; not because of some other maxima error.
616 (errcatch (,float-fun
(maybe-realpart (meval* ',expr
))))))
618 ;; Nothing interpolated here when there are no
619 ;; subscripted variables.
620 ,@(if (cdr subscripted-vars
) `((progn ,@subscripted-vars-restore
)))
626 ;; coerce-float-fun must be given an expression and one or two other optional
627 ;; arguments: a Maxima list of variables on which that expression depends
628 ;; and string that will identify the name of the responsible function
629 ;; when reporting errors.
630 (defun coerce-float-fun (expr &rest rest
&aux lvars fname
)
632 (0 (setq lvars nil
) (setq fname
"coerce-float-fun"))
634 (if (stringp (first rest
))
635 (progn (setq lvars nil
) (setq fname
(first rest
)))
636 (if ($listp
(first rest
))
637 (progn (setq lvars
(first rest
)) (setq fname
"coerce-float-fun"))
639 (intl:gettext
"coerce-float-fun: expecting a Maxima list, found: ~M")
642 (if ($listp
(first rest
))
643 (setq lvars
(first rest
))
645 (intl:gettext
"coerce-float-fun: expecting a Maxima list, found: ~M")
647 (if (stringp (second rest
))
648 (setq fname
(second rest
))
650 (intl:gettext
"coerce-float-fun: expecting a string, found: ~M")
652 (t (merror (intl:gettext
"coerce-float-fun: two many arguments given."))))
653 (%coerce-float-fun
'$float expr lvars fname
))
655 ;; coerce-bfloat-fun must be given an expression and one or two other optional
656 ;; arguments: a Maxima list of variables on which that expression depends
657 ;; and string that will identify the name of the responsible function
658 ;; when reporting errors.
659 (defun coerce-bfloat-fun (expr &rest rest
&aux lvars fname
)
661 (0 (setq lvars nil
) (setq fname
"coerce-bfloat-fun"))
663 (if (stringp (first rest
))
664 (progn (setq lvars nil
) (setq fname
(first rest
)))
665 (if ($listp
(first rest
))
666 (progn (setq lvars
(first rest
)) (setq fname
"coerce-float-fun"))
668 (intl:gettext
"coerce-bfloat-fun: expecting a Maxima list, found: ~M")
671 (if ($listp
(first rest
))
672 (setq lvars
(first rest
))
674 (intl:gettext
"coerce-bfloat-fun: expecting a Maxima list, found: ~M")
676 (if (stringp (second rest
))
677 (setq fname
(second rest
))
679 (intl:gettext
"coerce-bfloat-fun: expecting a string, found: ~M")
681 (t (merror (intl:gettext
"coerce-bfloat-fun: two many arguments given."))))
682 (%coerce-float-fun
'$bfloat expr lvars fname
))
684 (defun coerce-maxima-function-or-maxima-lambda
685 (args expr
&key
(float-fun '$float
))
686 (let ((gensym-args (loop for x in args collect
(gensym))))
688 `(lambda ,gensym-args
(declare (special ,@gensym-args
))
689 ;; Just always try to convert the result with
690 ;; float-fun, which handles things like $%pi.
692 ;; https://sourceforge.net/p/maxima/bugs/1795/
693 (let* (($ratprint nil
)
698 (,float-fun
(maybe-realpart (mapply ',expr
(list ,@gensym-args
) t
))))))
704 ;; Same as above, but call APPLY instead of MAPPLY.
706 (defun coerce-lisp-function-or-lisp-lambda
707 (args expr
&key
(float-fun '$float
))
708 (let ((gensym-args (loop for x in args collect
(gensym))))
710 `(lambda ,gensym-args
(declare (special ,@gensym-args
))
711 (let* (($ratprint nil
)
714 (result (maybe-realpart (apply ',expr
(list ,@gensym-args
)))))
715 ;; Always use float-fun. See comment for
716 ;; coerce-maxima-function-or-maxima-lambda above.
717 (,float-fun result
)))
720 (defmacro zval
(points verts i
) `(aref ,points
(+ 2 (* 3 (aref ,verts
,i
)))))
722 ;;sort the edges array so that drawing the edges will happen from the back towards
723 ;; the front. The if n==4 the edges array coming in looks like
724 ;; v1 v2 v3 v4 0 w1 w2 w3 w4 0 ...
725 ;; where vi,wi are indices pointint into the points array specifying a point
726 ;; in 3 space. After the sorting is done, the 0 is filled in with the vertex
727 ;; which is closer to us (ie highest z component after rotating towards the user)
728 ;; and this is then they are sorted in groups of 5.
729 (defun sort-ngons (points edges n
&aux lis
)
730 (declare (type (cl:array
(flonum)) points
)
731 (type (cl:array
(mod #x80000000
)) edges
)
733 (let ((new (make-array (length edges
) :element-type
(array-element-type edges
)))
739 (leng (length edges
))
741 (declare (type (cl:array
(mod #x80000000
)) new
)
742 (fixnum i leng n1 at
)
744 (declare (type flonum z z1
))
747 (loop for i0 below leng by
(+ n
1)
751 (setq z
(zval points edges i
))
754 do
(if (> (setq z1
(zval points edges i
)) z
)
755 (setq z z1 at
(aref edges i
) ))
758 (setf (aref edges i
) at
)
759 collect
(cons z i0
)))
760 (setq lis
(sort lis
#'alphalessp
:key
#'car
))
764 (loop for j from
(cdr v
)
766 do
(setf (aref new i
) (aref edges j
))
769 (copy-array-portion edges new
0 0 (length edges
))
772 (defun copy-array-portion (ar1 ar2 i1 i2 n1
)
773 (declare (fixnum i1 i2 n1
))
774 (loop while
(>= (setq n1
(- n1
1)) 0)
775 do
(setf (aref ar1 i1
) (aref ar2 i2
))
780 (defmfun $concat_polygons
(pl1 pl2
&aux tem new
)
784 for l
= (+ (length v
) (length w
))
785 do
(setq tem
(make-array l
786 :element-type
(array-element-type v
)
791 (setq new
(make-polygon (first new
) (second new
)) )
793 (copy-array-portion (polygon-pts pl1
) (polygon-pts new
)
794 0 0 (length (polygon-pts pl1
)))
795 (copy-array-portion (polygon-pts pl2
) (polygon-pts new
)
796 (length (polygon-pts pl1
))
797 0 (length (polygon-pts pl2
)))
798 (copy-array-portion (polygon-edges pl1
) (polygon-edges new
)
799 0 0 (length (polygon-edges pl1
)))
800 (loop for i from
(length (polygon-edges pl1
))
801 for j from
0 below
(length (polygon-edges pl2
))
802 with lpts1
= (length (polygon-pts pl1
))
803 with ar2
= (polygon-edges pl2
)
804 with arnew
= (polygon-edges new
)
805 do
(setf (aref arnew i
) (+ lpts1
(aref ar2 j
)))))
807 (defmfun $copy_pts
(lis vec start
)
808 (declare (fixnum start
))
810 (declare (type (cl:array flonum
) tem
))
812 (or (typep lis
'flonum
) (setq lis
(float lis
)))
813 (setf (aref tem start
) lis
)
816 ($copy_pts
(cdr lis
) vec
($copy_pts
(car lis
) vec start
)))
817 ((symbolp lis
) start
)
818 (t (merror (intl:gettext
"copy_pts: unrecognized first argument: ~M") lis
)))))
820 ;; Implicit expressions of two variables, for instance, x and y,
821 ;; where expr is of the form f(x,y) = g(x,y).
822 ;; The result is a series of separated line segments.
824 (defun draw2d-implicit (expr options
)
825 (let* ((xmin (first (getf options
:x
)))
826 (ymin (first (getf options
:y
)))
827 (xmax (second (getf options
:x
)))
828 (ymax (second (getf options
:y
)))
829 (gridx (or (first (getf options
:sample
)) 50))
830 (gridy (or (second (getf options
:sample
)) 50))
831 (eps (or (getf options
:plotepsilon
) 1e-6))
832 (f (make-array `(,(1+ gridx
) ,(1+ gridy
))))
833 vx vy dx dy fun faux fmax fmin levels values result results
)
834 (setq dx
(/ (- xmax xmin
) gridx
) dy
(/ (- ymax ymin
) gridy
))
835 (setq vx
(getf options
:xvar
) vy
(getf options
:yvar
))
836 (if (getf options
:contour
)
838 (setq fun
(m- ($lhs expr
) ($rhs expr
))))
839 (setq fun
(coerce-float-fun fun
`((mlist) ,vx
,vy
) "plot2d"))
840 ;; sets up array f with values of the function at corners of sample grid.
841 ;; finds maximum and minimum values in that array.
842 (dotimes (i (1+ gridx
))
843 (dotimes (j (1+ gridy
))
844 (setq faux
(funcall fun
(+ xmin
(* i dx
)) (+ ymin
(* j dy
))))
845 (setf (aref f i j
) faux
)
846 (when (and (numberp faux
) (plusp i
) (plusp j
) (< i gridx
) (< j gridy
))
850 (when (< faux fmin
) (setq fmin faux
))
851 (when (> faux fmax
) (setq fmax faux
)))
853 (setq fmax fmin fmin faux
)
857 (setq fmin fmax fmax faux
)
859 (setq fmin faux
))))))
860 ;; checks that the function has a minimum and a maximum
864 (not (numberp fmax
)) (not (> fmax fmin
)))
865 (merror (intl:gettext
"plot2d: nothing to plot for ~M.~%") expr
))
866 ;; sets up the levels for contour plots
867 (if (getf options
:contour
)
868 (if (setq levels
(getf options
:levels
))
869 (unless (listp levels
)
870 (setq levels
(getlevels fmin fmax levels
)))
871 (setq levels
(getlevels fmin fmax
8)))
872 (setq levels
(list 0.0)))
874 ;; Algorithm for implicit functions, by Jaime Villate. 2021
876 ;; The points at each rectangle in the sample grid are labeled as follows:
880 ;; | | function fun has the following values at those points:
882 ;; ij |____| i+j fij, fi+j, fij+, fi+j+
884 (let (fij fi
+j fij
+ fi
+j
+ p1 p2 p3 p4 next
)
886 ((interp+ (i j fi fi
+ &aux x1 y1 x2 y2
(f1 fi
) (f2 fi
+) xp yp fp
)
887 (if (minusp (* fi fi
+))
889 (setq x1
(+ xmin
(* dx i
)))
891 (setq y1
(+ ymin
(* dy j
)))
894 (if (< (/ (+ (abs (- fi fp
)) (abs (- fi
+ fp
)))
895 (abs (- fi fi
+))) 1.5) (list xp yp
) nil
))
896 (setq xp
(/ (+ x1 x2
) 2.0))
897 (setq yp
(/ (+ y1 y2
) 2.0))
898 (setq fp
(- (funcall fun xp yp
) level
))
899 (when (not (numberp fp
)) (return nil
))
900 (if (plusp (* f1 fp
))
901 (setq x1 xp y1 yp f1 fp
)
902 (setq x2 xp y2 yp f2 fp
))
903 (setq xp
(/ (- (* f1 x2
) (* f2 x1
)) (- f1 f2
)))
904 (setq yp
(/ (- (* f1 y2
) (* f2 y1
)) (- f1 f2
)))
905 (setq fp
(- (funcall fun xp yp
) level
))
906 (when (not (numberp fp
)) (return nil
))
907 (if (plusp (* f1 fp
))
908 (setq x1 xp y1 yp f1 fp
)
909 (setq x2 xp y2 yp f2 fp
))))
911 (interp- (i j fi fi
+ &aux x1 y1 x2 y2
(f1 fi
) (f2 fi
+) xp yp fp
)
912 (if (minusp (* fi fi
+))
914 (setq x1
(+ xmin
(* dx i
)))
916 (setq y1
(+ ymin
(* dy j
)))
919 (if (< (/ (+ (abs (- fi fp
)) (abs (- fi
+ fp
)))
920 (abs (- fi fi
+))) 1.5) (list xp yp
) nil
))
921 (setq xp
(/ (+ x1 x2
) 2.0))
922 (setq yp
(/ (+ y1 y2
) 2.0))
923 (setq fp
(- (funcall fun xp yp
) level
))
924 (when (not (numberp fp
)) (return nil
))
925 (if (plusp (* f1 fp
))
926 (setq x1 xp y1 yp f1 fp
)
927 (setq x2 xp y2 yp f2 fp
))
928 (setq xp
(/ (- (* f1 x2
) (* f2 x1
)) (- f1 f2
)))
929 (setq yp
(/ (- (* f1 y2
) (* f2 y1
)) (- f1 f2
)))
930 (setq fp
(- (funcall fun xp yp
) level
))
931 (when (not (numberp fp
)) (return nil
))
932 (if (plusp (* f1 fp
))
933 (setq x1 xp y1 yp f1 fp
)
934 (setq x2 xp y2 yp f2 fp
))))
936 (interpx (i j fi fi
+ &aux x1 x2
(f1 fi
) (f2 fi
+) xp yp fp
)
937 (if (minusp (* fi fi
+))
939 (setq x1
(+ xmin
(* dx i
)))
941 (setq yp
(+ ymin
(* dy j
)))
943 (if (< (/ (+ (abs (- fi fp
)) (abs (- fi
+ fp
)))
944 (abs (- fi fi
+))) 1.5) (list xp yp
) nil
))
945 (setq xp
(/ (+ x1 x2
) 2.0))
946 (setq fp
(- (funcall fun xp yp
) level
))
947 (when (not (numberp fp
)) (return nil
))
948 (if (plusp (* f1 fp
))
951 (setq xp
(/ (- (* f1 x2
) (* f2 x1
)) (- f1 f2
)))
952 (setq fp
(- (funcall fun xp yp
) level
))
953 (when (not (numberp fp
)) (return nil
))
954 (if (plusp (* f1 fp
))
956 (setq x2 xp f2 fp
))))
958 (interpy (i j fj fj
+ &aux y1 y2
(f1 fj
) (f2 fj
+) xp yp fp
)
959 (if (minusp (* fj fj
+))
961 (setq xp
(+ xmin
(* dx i
)))
962 (setq y1
(+ ymin
(* dy j
)))
965 (if (< (/ (+ (abs (- fj fp
)) (abs (- fj
+ fp
)))
966 (abs (- fj fj
+))) 1.5) (list xp yp
) nil
))
967 (setq yp
(/ (+ y1 y2
) 2.0))
968 (setq fp
(- (funcall fun xp yp
) level
))
969 (when (not (numberp fp
)) (return nil
))
970 (if (plusp (* f1 fp
))
973 (setq yp
(/ (- (* f1 y2
) (* f2 y1
)) (- f1 f2
)))
974 (setq fp
(- (funcall fun xp yp
) level
))
975 (when (not (numberp fp
)) (return nil
))
976 (if (plusp (* f1 fp
))
978 (setq y2 yp f2 fp
))))
981 (list (+ xmin
(* i dx
)) (+ ymin
(* j dy
))))
983 (push (first p1
) result
)
984 (push (second p1
) result
)
985 (push (first p2
) result
)
986 (push (second p2
) result
)
987 (push 'moveto result
)
988 (push 'moveto result
))
989 (draw-lines (p1 p2 p3
)
990 (push (first p1
) result
)
991 (push (second p1
) result
)
992 (push (first p2
) result
)
993 (push (second p2
) result
)
994 (push (first p3
) result
)
995 (push (second p3
) result
)
996 (push 'moveto result
)
997 (push 'moveto result
)))
998 (dolist (level (reverse levels
))
1001 (if (numberp (aref f i j
))
1002 (setq fij
(- (aref f i j
) level
))
1003 (setq fij
(aref f i j
)))
1004 (if (numberp (aref f i
(1+ j
)))
1005 (setq fij
+ (- (aref f i
(1+ j
)) level
))
1006 (setq fij
+ (aref f i
(1+ j
))))
1007 (if (numberp (aref f
(1+ i
) j
))
1008 (setq fi
+j
(- (aref f
(1+ i
) j
) level
))
1009 (setq fi
+j
(aref f
(1+ i
) j
)))
1010 (if (numberp (aref f
(1+ i
) (1+ j
)))
1011 (setq fi
+j
+ (- (aref f
(1+ i
) (1+ j
)) level
))
1012 (setq fi
+j
+ (aref f
(1+ i
) (1+ j
))))
1014 ;; 1. undefined at ij
1015 (when (not (numberp fij
))
1017 ;; if undefined also at i+j or ij+, continue to next rectangle
1018 (when (and (numberp fi
+j
) (numberp fij
+))
1019 (if (< (abs fi
+j
) eps
)
1020 (if (< (abs fij
+) eps
)
1021 ;; real and 0 at i+j and ij+
1022 (draw-line (coords (1+ i
) j
) (coords i
(1+ j
)))
1026 (setq p2
(interpx i
(1+ j
) fij
+ fi
+j
+)))
1027 ;; real at i+j, ij+ and i+j+, 0 at i+j and segment
1029 (draw-line (coords (1+ i
) j
) p2
)))
1030 (when (numberp fi
+j
+)
1031 (if (< (abs fij
+) eps
)
1032 (when (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+))
1033 ;; real at i+j, and i+j+, 0 at ij+ and segment
1035 (draw-line (coords i
(1+ j
)) p2
))
1038 (setq p1
(interpx i
(1+ j
) fij
+ fi
+j
+))
1039 (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+)))
1040 ;; real at i+j, ij+ and i+j+, 0 at segments
1041 ;; ij+ i+j+ and i+j i+j+
1042 (draw-line p1 p2
)))))))
1043 ;; 2. real at ij and undefined at i+j
1044 (when (and next
(not (numberp fi
+j
)))
1046 ;; if undefined at ij+, continue to next rectangle
1047 (when (numberp fij
+)
1048 (if (< (abs fij
) eps
)
1049 (if (< (abs fij
+) eps
)
1050 ;; zero at ij and ij+
1051 (draw-line (coords i j
) (coords i
(1+ j
)))
1055 (setq p2
(interpx i
(1+ j
) fij
+ fi
+j
+)))
1056 ;; real at ij+ and i+j+, 0 at ij and segment ij+ i+j+
1057 (draw-line (coords i j
) p2
)))
1061 (setq p1
(interpy i j fij fij
+))
1062 (setq p2
(interpx i
(1+ j
) fij
+ fi
+j
+)))
1063 ;; real at ij, ij+ and i+j+, 0 at segments ij ij+
1065 (draw-line p1 p2
)))))
1066 ;; 3. real at fi+j and 0 at ij
1067 (when (and next
(< (abs fij
) eps
))
1070 (if (< (abs fij
+) eps
)
1071 ;; real at i+j, 0 at ij and ij+
1072 (draw-line (coords i j
) (coords i
(1+ j
)))
1073 (when (setq p1
(interp- i
(1+ j
) fij
+ fi
+j
))
1075 (if (< (abs fi
+j
+) eps
)
1076 ;; real at i+j and ij, 0 at ij, i+j+ and
1078 (draw-lines (coords i j
) p1
1079 (coords (1+ i
) (1+ j
)))
1081 ;; real at i+j, ij+ and i+j+, 0 at ij,
1082 ;; diagonal ij+ i+j and segment ij+ i+j+
1083 (when (setq p2
(interpx i
(1+ j
) fij
+ fi
+j
+))
1084 (draw-lines (coords i j
) p1 p2
))
1085 ;; real at i+j, ij+ and i+j+, 0 at ij,
1086 ;; diagonal ij+ i+j and segment i+j i+j+
1087 (when (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+))
1088 (draw-lines (coords i j
) p1 p2
)))))))
1090 (if (< (abs fi
+j
) eps
)
1091 ;; undefined at ij+, real at fi+j+, 0 at ij and i+j
1092 (draw-line (coords i j
) (coords (1+ i
) j
))
1093 (when (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+))
1094 ;; undefined at ij+, real at fi+j and fi+j+, 0 at
1095 ;; ij and segment i+j i+j+
1096 (draw-line (coords i j
) p2
)))
1097 (when (< (abs fi
+j
) eps
)
1098 ;; undefined at ij+ and i+j+, 0 at ij and i+j
1099 (draw-line (coords i j
) (coords (1+ i
) j
))))))
1100 ;; 4. real at ij and 0 at i+j
1101 (when (and next
(< (abs fi
+j
) eps
))
1105 ;; if 0 at i+j but undefined at ij+ or there's no zero
1106 ;; in diagonal ij i+j+, continue to next rectangle
1107 (when (setq p1
(interp+ i j fij fi
+j
+))
1108 (if (< (abs fij
+) eps
)
1109 ;; 0 at i+j, ij+ and diagonal ij i+j+
1110 (draw-lines (coords (1+ i
) j
) p1
(coords i
(1+ j
)))
1112 (when (setq p2
(interpy i j fij fij
+))
1113 ;; 0 at i+j, diagonal ij i+j+ and segment
1115 (draw-lines (coords (1+ i
) j
) p1 p2
))
1116 (when (setq p2
(interpx i
(1+ j
) fij
+ fi
+j
+))
1117 ;; 0 at i+j, diagonal ij i+j+ and segment
1119 (draw-lines (coords (1+ i
) j
) p1 p2
)))))
1120 (when (setq p2
(interpy i j fij fij
+))
1121 ;; undefined at i+j+, 0 at i+j and segment ij ij+
1122 (draw-line (coords (1+ i
) j
) p2
)))))
1123 ;; 5. real at ij and i+j but undefined at ij+
1124 (when (and next
(not (numberp fij
+)))
1129 (setq p1
(interpx i j fij fi
+j
))
1130 (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+)))
1131 ;; 0 at segments ij i+j and i+j i+j+
1133 ;; 6. real at ij, i+j and ij+, but undefined at i+j+
1134 (when (and next
(not (numberp fi
+j
+)))
1138 (setq p1
(interpy i j fij fij
+))
1139 (setq p2
(interpx i j fij fi
+j
)))
1140 ;; 0 at segments ij ij+ and ij i+j
1142 ;; 7. real at the four corners and 0 at ij+
1143 (when (and next
(< (abs fij
+) eps
))
1145 (when (setq p1
(interp+ i j fij fi
+j
+))
1146 (when (setq p2
(interpx i j fij fi
+j
))
1147 ;; 0 at diagonal ij i+j+ and segment ij i+j
1148 (draw-lines p2 p1
(coords i
(1+ j
))))
1149 (when (setq p2
(interpy (1+ i
) j fi
+j fi
+j
+))
1150 ;; 0 at diagonal ij i+j+ and segment i+j i+j+
1151 (draw-lines p2 p1
(coords i
(1+ j
))))))
1152 ;; 8. real at the four corners and 0 at i+j+
1153 (when (and next
(< (abs fi
+j
+) eps
))
1155 (when (setq p1
(interp- i
(1+ j
) fij
+ fi
+j
))
1156 (when (setq p2
(interpx i j fij fi
+j
))
1157 ;; 0 at diagonal ij+ i+j and segment ij i+j
1158 (draw-lines p2 p1
(coords (1+ i
) (1+ j
))))
1159 (when (setq p2
(interpy i j fij fij
+))
1160 ;; 0 at diagonal ij+ i+j and segment ij ij+
1161 (draw-lines p2 p1
(coords (1+ i
) (1+ j
))))))
1162 ;; 9. real at the four corners and 0 at segment ij i+j
1163 (when (and next
(setq p1
(interpx i j fij fi
+j
)))
1165 (if (setq p2
(interpy i j fij fij
+))
1166 (if (setq p3
(interpx i
(1+ j
) fij
+ fi
+j
+))
1167 (when (setq p4
(interpy (1+ i
) j fi
+j fi
+j
+))
1168 ;; 0 at the four sides
1171 (when (setq p3
(interp+ i j fij fi
+j
+))
1172 ;; 0 at segments ij i+j, ij ij+ and diagonal ij i+j+
1173 (draw-lines p1 p3 p2
)))
1174 (if (setq p4
(interpy (1+ i
) j fi
+j fi
+j
+))
1175 (when (setq p2
(interp- i
(1+ j
) fij
+ fi
+j
))
1176 ;; 0 at segments ij i+j, i+j i+j+ and diagonal ij+ i+j
1177 (draw-lines p1 p2 p4
))
1180 (setq p3
(interpx i
(1+ j
) fij
+ fi
+j
+))
1181 (setq p2
(interp+ i j fij fi
+j
+)))
1182 ;; 0 at segments ij i+j, ij+ i+j+ and diagonal ij i+j+
1183 (draw-lines p1 p2 p3
)))))
1184 ;; 10. real at the four corners, without zero in segment ij i+j
1186 (if (setq p2
(interpy i j fij fij
+))
1187 (if (setq p3
(interpx i
(1+ j
) fij
+ fi
+j
+))
1188 (when (setq p4
(interp- i
(1+ j
) fij
+ fi
+j
))
1189 ;; 0 at segments ij ij+ and ij+ i+j+ and diagonal
1191 (draw-lines p2 p4 p3
))
1194 (setq p4
(interpy (1+ i
) j fi
+j fi
+j
+))
1195 (setq p3
(interp+ i j fij fi
+j
+)))
1196 ;; 0 at segments ij ij+ and i+j i+j+ and diagonal
1198 (draw-lines p2 p3 p4
)))
1201 (setq p3
(interpx i
(1+ j
) fij
+ fi
+j
+))
1202 (setq p4
(interpy (1+ i
) j fi
+j fi
+j
+))
1203 (setq p1
(interp+ i j fij fi
+j
+)))
1204 ;; 0 at segments ij+ i+j+ and i+j i+j+ and diagonal
1206 (draw-lines p4 p1 p3
))))))
1207 (when (and (getf options
:contour
) result
)
1208 (push (cons '(mlist) (reverse result
)) results
)
1210 (setq result nil
)))))
1211 ;; When called for a single implicit expression, returns a Maxima list
1212 ;; of points. When called for contours of an expression, returns a
1213 ;; Maxima list whose first element is another Maxima list with the values
1214 ;; of the contours, followed by Maxima lists of points for each contour.
1215 (if (getf options
:contour
)
1216 (cons '(mlist) (cons (cons '(mlist) values
) results
))
1217 (cons '(mlist) (reverse result
)))))
1219 ;; parametric ; [parametric,xfun,yfun,[t,tlow,thigh],[nticks ..]]
1220 ;; the rest of the parametric list after the list will add to the plot options
1222 (defun draw2d-parametric-adaptive (param options
&aux range
)
1223 (or (= ($length param
) 4)
1224 (merror (intl:gettext
"plot2d: parametric plots must include two expressions and an interval")))
1225 (setq range
(nth 4 param
))
1226 (or (and ($listp range
) (symbolp (second range
)) (eql ($length range
) 3))
1227 (merror (intl:gettext
"plot2d: wrong interval for parametric plot: ~M")
1229 (setq range
(check-range range
))
1230 (let* ((nticks (getf options
:nticks
))
1231 (trange (cddr range
))
1232 (tvar (second range
))
1233 (xrange (or (getf options
:x
) (getf options
:xbounds
)))
1234 (yrange (or (getf options
:y
) (getf options
:ybounds
)))
1235 (tmin (coerce-float (first trange
)))
1236 (tmax (coerce-float (second trange
)))
1237 (xmin (coerce-float (first xrange
)))
1238 (xmax (coerce-float (second xrange
)))
1239 (ymin (coerce-float (first yrange
)))
1240 (ymax (coerce-float (second yrange
)))
1242 (declare (type flonum ymin ymax xmin xmax tmin tmax
))
1243 (setq f1
(coerce-float-fun (third param
) `((mlist), tvar
) "plot2d"))
1244 (setq f2
(coerce-float-fun (fourth param
) `((mlist), tvar
) "plot2d"))
1246 (let ((n-clipped 0) (n-non-numeric 0)
1247 (t-step (/ (- tmax tmin
) (coerce-float nticks
) 2))
1248 t-samples x-samples y-samples result
)
1249 ;; Divide the range into 2*NTICKS regions that we then
1250 ;; adaptively plot over.
1251 (dotimes (k (1+ (* 2 nticks
)))
1252 (let ((tpar (+ tmin
(* k t-step
))))
1253 (push tpar t-samples
)
1254 (push (funcall f1 tpar
) x-samples
)
1255 (push (funcall f2 tpar
) y-samples
)))
1256 (setf t-samples
(nreverse t-samples
))
1257 (setf x-samples
(nreverse x-samples
))
1258 (setf y-samples
(nreverse y-samples
))
1260 ;; Adaptively plot over each region
1261 (do ((t-start t-samples
(cddr t-start
))
1262 (t-mid (cdr t-samples
) (cddr t-mid
))
1263 (t-end (cddr t-samples
) (cddr t-end
))
1264 (x-start x-samples
(cddr x-start
))
1265 (x-mid (cdr x-samples
) (cddr x-mid
))
1266 (x-end (cddr x-samples
) (cddr x-end
))
1267 (y-start y-samples
(cddr y-start
))
1268 (y-mid (cdr y-samples
) (cddr y-mid
))
1269 (y-end (cddr y-samples
) (cddr y-end
)))
1274 (cddr (adaptive-parametric-plot
1276 (car t-start
) (car t-mid
) (car t-end
)
1277 (car x-start
) (car x-mid
) (car x-end
)
1278 (car y-start
) (car y-mid
) (car y-end
)
1279 (getf options
:adapt_depth
)
1281 (adaptive-parametric-plot
1283 (car t-start
) (car t-mid
) (car t-end
)
1284 (car x-start
) (car x-mid
) (car x-end
)
1285 (car y-start
) (car y-mid
) (car y-end
)
1286 (getf options
:adapt_depth
)
1288 ;; Fix up out-of-range values and clobber non-numeric values.
1289 (do ((x result
(cddr x
))
1290 (y (cdr result
) (cddr y
)))
1292 (if (and (numberp (car x
)) (numberp (car y
)))
1293 (unless (and (<= ymin
(car y
) ymax
)
1294 (<= xmin
(car x
) xmax
))
1295 ;; Let gnuplot do the clipping. See the comment in DRAW2D.
1297 (unless (member (getf options
:plot_format
)
1298 '($gnuplot_pipes $gnuplot
))
1300 (setf (car x
) 'moveto
)
1301 (setf (car y
) 'moveto
)))
1303 (incf n-non-numeric
)
1304 (setf (car x
) 'moveto
)
1305 (setf (car y
) 'moveto
))))
1306 ;; Filter out any MOVETO's which do not precede a number.
1307 ;; Code elsewhere in this file expects MOVETO's to
1308 ;; come in pairs, so leave two MOVETO's before a number.
1309 (let ((n (length result
)))
1314 (eq (nth i result
) 'moveto
)
1315 (eq (nth (1+ i
) result
) 'moveto
)
1318 (eq (nth (+ i
2) result
) 'moveto
)))
1319 (setf (nth i result
) nil
)
1320 (setf (nth (1+ i
) result
) nil
))))
1322 (let ((result-sans-nil (delete nil result
)))
1323 (if (null result-sans-nil
)
1325 ((= n-non-numeric
0)
1326 (mtell (intl:gettext
"plot2d: all values will be clipped.~%")))
1328 (mtell (intl:gettext
1329 "plot2d: expression evaluates to non-numeric value everywhere in plotting range.~%")))
1331 (mtell (intl:gettext
1332 "plot2d: all values are non-numeric, or clipped.~%"))))
1334 (if (> n-non-numeric
0)
1335 (mtell (intl:gettext
1336 "plot2d: expression evaluates to non-numeric value somewhere in plotting range.~%")))
1338 (mtell (intl:gettext
"plot2d: some values will be clipped.~%")))))
1339 (cons '(mlist) result-sans-nil
)))))
1341 ;; draw2d-discrete. Accepts [discrete,[x1,x2,...],[y1,y2,...]]
1342 ;; or [discrete,[[x1,y1]...] and returns [x1,y1,...] or nil, if
1343 ;; non of the points have real values.
1344 ;; Currently any options given are being ignored, because there
1345 ;; are no options specific to the generation of the points.
1346 (defun draw2d-discrete (f)
1347 (let ((x (third f
)) (y (fourth f
)) data gaps
)
1349 (($listp x
) ; x is a list
1351 (($listp
(cadr x
)) ; x1 is a list
1353 ((= (length (cadr x
)) 3) ; x1 is a 2D point
1354 (setq data
(parse-points-xy x
)))
1355 (t ; x1 is not a 2D point
1356 (merror (intl:gettext
"draw2d-discrete: Expecting a point with 2 coordinates; found ~M~%") (cadr x
)))))
1357 (t ; x1 is not a list
1359 (($listp y
) ; y is a list
1361 ((symbolp (coerce-float (cadr y
))); y is an option
1362 (setq data
(parse-points-y x
)))
1363 (t ; y is not an option
1365 (($listp
(cadr y
)) ; y1 is a list
1366 (merror (intl:gettext
"draw2d-discrete: Expecting a y coordinate; found ~M~%") (cadr y
)))
1369 ((= (length x
) (length y
)) ; case [x][y]
1370 (setq data
(parse-points-x-y x y
)))
1372 (merror (intl:gettext
"draw2d-discrete: The number of x and y coordinates do not match.~%")))))))))
1373 (t ; y is not a list
1374 (setq data
(parse-points-y x
)))))))
1375 (t ; x is not a list
1376 (merror (intl:gettext
"draw2d-discrete: Expecting a list of x coordinates or points; found ~M~%") x
)))
1378 ;; checks for non-real values
1380 ((some #'realp data
)
1381 (setq gaps
(count-if #'(lambda (x) (eq x
'moveto
)) data
))
1383 ;; some points have non-real values
1384 (mtell (intl:gettext
"Warning: excluding ~M points with non-numerical values.~%") (/ gaps
2))))
1386 ;; none of the points have real values
1387 (mtell (intl:gettext
"Warning: none of the points have numerical values.~%"))
1391 ;; Two lists [x1...xn] and [y1...yn] are joined as
1392 ;; [x1 y1...xn yn], converting all expressions to real numbers.
1393 ;; If either xi or yi are not real, both are replaced by 'moveto
1394 (defun parse-points-x-y (x y
)
1395 (do ((a (rest x
) (cdr a
))
1396 (b (rest y
) (cdr b
))
1398 ((null b
) (cons '(mlist) (reverse c
)))
1399 (setq af
(coerce-float (car a
)))
1400 (setq bf
(coerce-float (car b
)))
1402 ((or (not (realp af
)) (not (realp bf
)))
1403 (setq c
(cons 'moveto
(cons 'moveto c
))))
1405 (setq c
(cons bf
(cons af c
)))))))
1407 ;; One list [y1...yn] becomes the list [1 y1...n yn],
1408 ;; converting all expressions to real numbers.
1409 ;; If yi is not real, both i and yi are replaced by 'moveto
1410 (defun parse-points-y (y)
1412 (b (rest y
) (cdr b
))
1414 ((null b
) (cons '(mlist) (reverse c
)))
1415 (setq bf
(coerce-float (car b
)))
1418 (setq c
(cons 'moveto
(cons 'moveto c
))))
1420 (setq c
(cons bf
(cons a c
)))))))
1422 ;; List [[x1,y1]...[xn,yn]] is transformed into
1423 ;; [x1 y1...xn yn], converting all expressions to real numbers.
1424 ;; If either xi or yi are not real, both are replaced by 'moveto
1425 (defun parse-points-xy (xy)
1426 (do ((ab (rest xy
) (cdr ab
))
1428 ((null ab
) (cons '(mlist) (reverse c
)))
1429 (setq af
(coerce-float (cadar ab
)))
1430 (setq bf
(coerce-float (caddar ab
)))
1432 ((or (not (realp af
)) (not (realp bf
)))
1433 (setq c
(cons 'moveto
(cons 'moveto c
))))
1435 (setq c
(cons bf
(cons af c
)))))))
1437 ;;; Adaptive plotting, based on the adaptive plotting code from
1438 ;;; YACAS. See http://yacas.sourceforge.net/Algo.html#c3s1 for a
1439 ;;; description of the algorithm. More precise details can be found
1440 ;;; in the file yacas/scripts/plots.rep/plot2d.ys.
1443 ;; Determine if we have a slow oscillation of the function.
1444 ;; Basically, for each 3 consecutive function values, we check to see
1445 ;; if the function is monotonic or not. There are 3 such sets, and
1446 ;; the function is considered slowly oscillating if at most 2 of them
1447 ;; are not monotonic.
1448 (defun slow-oscillation-p (f0 f1 f2 f3 f4
)
1449 (flet ((sign-change (x y z
)
1450 (cond ((not (and (numberp x
) (numberp y
) (numberp z
)))
1451 ;; Something is not a number. Assume the
1452 ;; oscillation is not slow.
1454 ((or (and (> y x
) (> y z
))
1455 (and (< y x
) (< y z
)))
1459 (<= (+ (sign-change f0 f1 f2
)
1460 (sign-change f1 f2 f3
)
1461 (sign-change f2 f3 f4
))
1464 ;; Determine if the function values are smooth enough. This means
1465 ;; that integrals of the functions on the left part and the right part
1466 ;; of the range are approximately the same.
1469 (defun smooth-enough-p (f-a f-a1 f-b f-b1 f-c eps
)
1470 (cond ((every #'numberp
(list f-a f-a1 f-b f-b1 f-c
))
1471 (let ((quad (/ (+ f-a
1477 (quad-b (/ (+ (* 5 f-b
)
1481 ;; According to the Yacas source code, quad is the Simpson
1482 ;; quadrature for the (fb,fb1) subinterval (using points b,b1,c),
1483 ;; subtracted from the 4-point Newton-Cotes quadrature for the
1484 ;; (fb,fb1) subinterval (using points a, a1, b, b1.
1486 ;; quad-b is the Simpson quadrature for the (fb,f1) subinterval.
1488 ;; This used to test for diff <= 0. But in some
1489 ;; situations, like plot2d(0.99,[x,0,5]), roundoff prevents
1490 ;; this from happening. So we do diff < delta instead, for
1491 ;; some value of delta.
1493 ;; XXX: What is the right value for delta? Does this break
1494 ;; other things? Simple tests thus far show that
1495 ;; 100*flonum-epsilon is ok.
1496 (let ((diff (- (abs quad
)
1497 (* eps
(- quad-b
(min f-a f-a1 f-b f-b1 f-c
)))))
1498 (delta (* 150 flonum-epsilon
)))
1501 ;; Something is not a number, so assume it's not smooth enough.
1504 (defun adaptive-plot (fcn a b c f-a f-b f-c depth eps
)
1505 ;; Step 1: Split the interval [a, c] into 5 points
1506 (let* ((a1 (/ (+ a b
) 2))
1508 (f-a1 (funcall fcn a1
))
1509 (f-b1 (funcall fcn b1
))
1511 (cond ((or (not (plusp depth
))
1512 (and (slow-oscillation-p f-a f-a1 f-b f-b1 f-c
)
1513 (smooth-enough-p f-a f-a1 f-b f-b1 f-c eps
)))
1514 ;; Everything is nice and smooth so we're done. Don't
1521 ;; We are not plotting the real part of the function and the
1522 ;; function is undefined at all points - assume it has complex value
1523 ;; on [a,b]. Maybe we should refine it a couple of times just to make sure?
1524 ((and (null *plot-realpart
*)
1525 (null f-a
) (null f-a1
) (null f-b
) (null f-b1
) (null f-c
))
1532 ;; Need to refine. Split the interval in half, and try to plot each half.
1533 (let ((left (adaptive-plot fcn a a1 b f-a f-a1 f-b
(1- depth
) (* 2 eps
)))
1534 (right (adaptive-plot fcn b b1 c f-b f-b1 f-c
(1- depth
) (* 2 eps
))))
1535 (append left
(cddr right
)))))))
1537 (defun adaptive-parametric-plot (x-fcn y-fcn a b c x-a x-b x-c y-a y-b y-c depth eps
)
1538 ;; Step 1: Split the interval [a, c] into 5 points
1539 (let* ((a1 (/ (+ a b
) 2))
1541 (x-a1 (funcall x-fcn a1
))
1542 (x-b1 (funcall x-fcn b1
))
1543 (y-a1 (funcall y-fcn a1
))
1544 (y-b1 (funcall y-fcn b1
)))
1545 (cond ((or (not (plusp depth
))
1546 ;; Should we have a different algorithm to determine
1547 ;; slow oscillation and smooth-enough for parametric
1549 (and (slow-oscillation-p y-a y-a1 y-b y-b1 y-c
)
1550 (slow-oscillation-p x-a x-a1 x-b x-b1 x-c
)
1551 (smooth-enough-p y-a y-a1 y-b y-b1 y-c eps
)
1552 (smooth-enough-p x-a x-a1 x-b x-b1 x-c eps
)))
1553 ;; Everything is nice and smooth so we're done. Don't
1560 ;; We are not plotting the real part of the function and the
1561 ;; function is undefined at all points - assume it has complex value
1562 ;; on [a,b]. Maybe we should refine it a couple of times just to make sure?
1563 ((and (null *plot-realpart
*)
1564 (null y-a
) (null y-a1
) (null y-b
) (null y-b1
) (null y-c
)
1565 (null x-a
) (null x-a1
) (null x-b
) (null x-b1
) (null x-c
))
1572 ;; Need to refine. Split the interval in half, and try to plot each half.
1573 (let ((left (adaptive-parametric-plot x-fcn y-fcn
1577 (1- depth
) (* 2 eps
)))
1578 (right (adaptive-parametric-plot x-fcn y-fcn
1582 (1- depth
) (* 2 eps
))))
1583 ;; (cddr right) to skip over the point that is duplicated
1584 ;; between the right end-point of the left region and the
1585 ;; left end-point of the right
1586 (append left
(cddr right
)))))))
1588 (defun draw2d (fcn range plot-options
)
1589 (if (and ($listp fcn
) (equal '$parametric
(cadr fcn
)))
1591 (draw2d-parametric-adaptive fcn plot-options
)))
1592 (if (and ($listp fcn
) (equal '$discrete
(cadr fcn
)))
1593 (return-from draw2d
(draw2d-discrete fcn
)))
1594 (when (and ($listp fcn
) (equal '$contour
(cadr fcn
)))
1595 (setf (getf plot-options
:contour
) t
)
1596 (return-from draw2d
(draw2d-implicit (caddr fcn
) plot-options
)))
1597 (when (and (listp fcn
) (eq 'mequal
(caar fcn
)))
1598 (setf (getf plot-options
:contour
) nil
)
1599 (return-from draw2d
(draw2d-implicit fcn plot-options
)))
1600 (let* ((nticks (getf plot-options
:nticks
))
1601 (yrange (getf plot-options
:ybounds
))
1602 (depth (getf plot-options
:adapt_depth
)))
1604 (setq fcn
(coerce-float-fun fcn
`((mlist), (second range
)) "plot2d"))
1606 (let* ((x-start (coerce-float (third range
)))
1607 (xend (coerce-float (fourth range
)))
1608 (x-step (/ (- xend x-start
) (coerce-float nticks
) 2))
1609 (ymin (coerce-float (first yrange
)))
1610 (ymax (coerce-float (second yrange
)))
1611 (n-clipped 0) (n-non-numeric 0)
1612 ;; What is a good EPS value for adaptive plotting?
1614 x-samples y-samples result
1616 (declare (type flonum ymin ymax
))
1617 ;; Divide the region into NTICKS regions. Each region has a
1618 ;; start, mid and endpoint. Then adaptively plot over each of
1619 ;; these regions. So it's probably a good idea not to make
1620 ;; NTICKS too big. Since adaptive plotting splits the sections
1621 ;; in half, it's also probably not a good idea to have NTICKS be
1623 (when (getf plot-options
:logx
)
1624 (setf x-start
(log x-start
))
1625 (setf xend
(log xend
))
1626 (setf x-step
(/ (- xend x-start
) (coerce-float nticks
) 2)))
1629 (let ((y (if (getf plot-options
:logx
)
1630 (funcall fcn
(exp x
))
1632 (if (and (getf plot-options
:logy
)
1634 (if (> y
0) (log y
) 'und
)
1637 (dotimes (k (1+ (* 2 nticks
)))
1638 (let ((x (+ x-start
(* k x-step
))))
1640 (push (fun x
) y-samples
)))
1641 (setf x-samples
(nreverse x-samples
))
1642 (setf y-samples
(nreverse y-samples
))
1644 ;; For each region, adaptively plot it.
1645 (do ((x-start x-samples
(cddr x-start
))
1646 (x-mid (cdr x-samples
) (cddr x-mid
))
1647 (x-end (cddr x-samples
) (cddr x-end
))
1648 (y-start y-samples
(cddr y-start
))
1649 (y-mid (cdr y-samples
) (cddr y-mid
))
1650 (y-end (cddr y-samples
) (cddr y-end
)))
1652 ;; The region is x-start to x-end, with mid-point x-mid.
1654 ;; The cddr is to remove the one extra sample (x and y value)
1655 ;; that adaptive plot returns. But on the first iteration,
1656 ;; result is empty, so we don't want the cddr because we want
1657 ;; all the samples returned from adaptive-plot. On subsequent
1658 ;; iterations, it's a duplicate of the last point of the
1659 ;; previous interval.
1664 (adaptive-plot #'fun
(car x-start
) (car x-mid
) (car x-end
)
1665 (car y-start
) (car y-mid
) (car y-end
)
1667 (adaptive-plot #'fun
(car x-start
) (car x-mid
) (car x-end
)
1668 (car y-start
) (car y-mid
) (car y-end
)
1671 ;; Fix up out-of-range values
1672 ;; and clobber non-numeric values.
1674 (do ((x result
(cddr x
))
1675 (y (cdr result
) (cddr y
)))
1677 (if (numberp (car y
))
1678 (unless (<= ymin
(car y
) ymax
)
1680 ;; If the plot format uses gnuplot, we can let gnuplot
1681 ;; do the clipping for us. This results in better
1682 ;; looking plots. For example plot2d(x-floor(x),
1683 ;; [x,0,5], [y, 0, .5]) has lines going all the way to
1684 ;; the limits. Previously, the lines would stop
1685 ;; before the limit.
1686 (unless (member (getf plot-options
:plot_format
)
1687 '($gnuplot_pipes $gnuplot
))
1688 (setf (car x
) 'moveto
)
1689 (setf (car y
) 'moveto
)))
1691 (incf n-non-numeric
)
1692 (setf (car x
) 'moveto
)
1693 (setf (car y
) 'moveto
)))
1694 (when (and (getf plot-options
:logx
)
1696 (setf (car x
) (exp (car x
))))
1698 (when (and (getf plot-options
:logy
)
1700 (setf (car y
) (exp (car y
)))))
1702 ;; Filter out any MOVETO's which do not precede a number.
1703 ;; Code elsewhere in this file expects MOVETO's to
1704 ;; come in pairs, so leave two MOVETO's before a number.
1705 (let ((n (length result
)))
1710 (eq (nth i result
) 'moveto
)
1711 (eq (nth (1+ i
) result
) 'moveto
)
1714 (eq (nth (+ i
2) result
) 'moveto
)))
1715 (setf (nth i result
) nil
)
1716 (setf (nth (1+ i
) result
) nil
))))
1718 (let ((result-sans-nil (delete nil result
)))
1719 (if (null result-sans-nil
)
1721 ((= n-non-numeric
0)
1722 (mtell (intl:gettext
"plot2d: all values will be clipped.~%")))
1724 (mtell (intl:gettext
"plot2d: expression evaluates to non-numeric value everywhere in plotting range.~%")))
1726 (mtell (intl:gettext
"plot2d: all values are non-numeric, or clipped.~%"))))
1728 (if (> n-non-numeric
0)
1729 (mtell (intl:gettext
"plot2d: expression evaluates to non-numeric value somewhere in plotting range.~%")))
1731 (mtell (intl:gettext
"plot2d: some values will be clipped.~%")))))
1732 (cons '(mlist) result-sans-nil
))))))
1734 (defun get-range (lis)
1735 (let ((ymin most-positive-flonum
)
1736 (ymax most-negative-flonum
))
1737 (declare (type flonum ymin ymax
))
1738 (do ((l lis
(cddr l
)))
1740 (or (floatp (car l
)) (setf (car l
) (float (car l
))))
1741 (cond ((< (car l
) ymin
)
1742 (setq ymin
(car l
))))
1743 (cond ((< ymax
(car l
))
1744 (setq ymax
(car l
)))))
1745 (list '(mlist) ymin ymax
)))
1747 #+sbcl
(defvar $gnuplot_view_args
"-persist ~a")
1748 #-sbcl
(defvar $gnuplot_view_args
"-persist ~s")
1750 #+(or sbcl openmcl
) (defvar $gnuplot_file_args
"~a")
1751 #-
(or sbcl openmcl
) (defvar $gnuplot_file_args
"~s")
1753 (defvar $mgnuplot_command
"mgnuplot")
1754 (defvar $geomview_command
"geomview")
1756 (defvar $xmaxima_plot_command
"xmaxima")
1758 (defun plot-set-gnuplot-script-file-name (options)
1759 (let ((gnuplot-term (getf options
:gnuplot_term
))
1760 (gnuplot-out-file (getf options
:gnuplot_out_file
)))
1761 (if (and (find (getf options
:plot_format
) '($gnuplot_pipes $gnuplot
))
1762 (eq gnuplot-term
'$default
) gnuplot-out-file
)
1763 (plot-file-path gnuplot-out-file t options
)
1765 (format nil
"maxout~d.~(~a~)"
1767 (ensure-string (getf options
:plot_format
))) nil options
))))
1769 (defun plot-temp-file0 (file &optional
(preserve-file nil
))
1771 (if *maxima-tempdir
*
1772 (format nil
"~a/~a" *maxima-tempdir
* file
)
1774 (declare (special *temp-files-list
*))
1775 (unless preserve-file
1776 (setf (gethash filename
*temp-files-list
*) t
))
1777 (format nil
"~a" filename
)
1779 (defun plot-temp-file (file &optional
(preserve-file nil
) (plot-options nil
))
1782 (and plot-options
(getf plot-options
:gnuplot_script_file
))))
1783 (if (null script-name-or-fun
)
1784 (plot-temp-file0 file preserve-file
)
1789 ((symbolp script-name-or-fun
) (mfuncall script-name-or-fun file
))
1790 (t script-name-or-fun
)))
1791 (if (pathname-directory script-name
)
1793 (plot-temp-file0 script-name preserve-file
))))))
1795 ;; If no file path is given, uses temporary directory path
1796 (defun plot-file-path (file &optional
(preserve-file nil
) (plot-options nil
))
1797 (if (pathname-directory file
)
1799 (plot-temp-file file preserve-file plot-options
)))
1801 (defun gnuplot-process (plot-options &optional file out-file
)
1802 (let ((gnuplot-term (getf plot-options
:gnuplot_term
))
1803 (run-viewer (getf plot-options
:run_viewer
))
1804 #-
(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
1806 (string-downcase (getf plot-options
:gnuplot_preamble
))))
1808 ;; creates the output file, when there is one to be created
1809 (when (and out-file
(not (eq gnuplot-term
'$default
)))
1810 #+(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
1811 ($system $gnuplot_command
(format nil $gnuplot_file_args file
))
1812 #-
(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
1813 ($system
(format nil
"~a ~a" $gnuplot_command
1814 (format nil $gnuplot_file_args file
))))
1816 ;; displays contents of the output file, when gnuplot-term is dumb,
1817 ;; or runs gnuplot when gnuplot-term is default
1821 ;; the options given to gnuplot will be different when the user
1822 ;; redirects the output by using "set output" in the preamble
1823 #+(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
1824 ($system $gnuplot_command
"-persist" (format nil $gnuplot_file_args file
))
1825 #-
(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
1827 (format nil
"~a ~a" $gnuplot_command
1828 (format nil
(if (search "set out" gnuplot-preamble
)
1829 $gnuplot_file_args $gnuplot_view_args
)
1833 ($printfile
(car out-file
))
1834 (merror (intl:gettext
"plotting: option 'gnuplot_out_file' not defined."))))))))
1836 ;; plot-options-parser puts the plot options given into a property list.
1837 ;; maxopts: a list (not a Maxima list!) with plot options.
1838 ;; options: a property list, or an empty list.
1840 ;; (plot-options-parser (list #$[x,-2,2]$ #$[nticks,30]$) '(:nticks 4))
1842 ;; (:XLABEL "x" :XMAX 2.0 :XMIN -2.0 :NTICKS 30)
1844 (defun plot-options-parser (maxopts options
&aux name
)
1845 (dolist (opt maxopts
)
1846 (unless (or ($listp opt
) (symbolp opt
))
1849 "plot-options-parser: option \"~M\" should be a list or a symbol")
1853 (unless ($symbolp
(setq name
(second opt
)))
1856 "plot-options-parser: Expecting option name as a symbol, found: \"~M\"")
1860 (setf (getf options
:adapt_depth
)
1861 (check-option (cdr opt
) #'(lambda (n)
1862 ;; N should be a non-negative integer
1865 "a non-negative integer" 1)))
1866 ($axes
(setf (getf options
:axes
)
1867 (check-option-b (cdr opt
) #'axesoptionp
"x, y, solid" 1)))
1868 ($azimuth
(if (caddr opt
)
1869 (setf (caddr opt
) (parse-azimuth (caddr opt
))))
1870 (setf (getf options
:azimuth
)
1871 (check-option (cdr opt
) #'realp
"a real number" 1)))
1872 ($box
(setf (getf options
:box
)
1873 (check-option-boole (cdr opt
))))
1874 ($color
(setf (getf options
:color
)
1875 (check-option (cdr opt
) #'plotcolorp
"a color")))
1876 ($color_bar
(setf (getf options
:color_bar
)
1877 (check-option-boole (cdr opt
))))
1880 (setf (cddr opt
) (mapcar #'coerce-float
(cddr opt
))))
1881 (setf (getf options
:color_bar_tics
)
1882 (check-option-b (cdr opt
) #'realp
"a real number" 3)))
1883 ($elevation
(if (caddr opt
)
1884 (setf (caddr opt
) (parse-elevation (caddr opt
))))
1885 (setf (getf options
:elevation
)
1886 (check-option (cdr opt
) #'realp
"a real number" 1)))
1887 ($grid
(setf (getf options
:grid
)
1888 (check-option (cdr opt
) #'naturalp
"a natural number" 2)))
1889 ($grid2d
(setf (getf options
:grid2d
)
1890 (check-option-boole (cdr opt
))))
1892 (setf (getf options
:iterations
)
1893 (check-option (cdr opt
) #'naturalp
"a natural number" 1)))
1894 ($label
(setf (getf options
:label
)
1895 (check-option-label (cdr opt
))))
1896 ($legend
(setf (getf options
:legend
)
1897 (check-option-b (cdr opt
) #'stringp
"a string")))
1898 ($levels
(setf (getf options
:levels
)
1899 (check-option-levels (cdr opt
))))
1900 ($logx
(setf (getf options
:logx
)
1901 (check-option-boole (cdr opt
))))
1902 ($logy
(setf (getf options
:logy
)
1903 (check-option-boole (cdr opt
))))
1905 (setf (getf options
:mesh_lines_color
)
1906 (check-option-b (cdr opt
) #'plotcolorp
"a color" 1)))
1907 ($nticks
(setf (getf options
:nticks
)
1908 (check-option (cdr opt
) #'naturalp
"a natural number" 1)))
1909 ($palette
(setf (getf options
:palette
)
1910 (check-option-palette (cdr opt
))))
1911 ($plotepsilon
(setf (getf options
:plotepsilon
)
1912 (check-option (cdr opt
) #'realp
"a real number" 1)))
1913 ($plot_format
(setf (getf options
:plot_format
)
1914 (check-option-format (cdr opt
))))
1915 ($plot_realpart
(setf (getf options
:plot_realpart
)
1916 (check-option-boole (cdr opt
))))
1917 ($point_type
(setf (getf options
:point_type
)
1918 (check-option (cdr opt
) #'pointtypep
"a point type")))
1919 ($pdf_file
(setf (getf options
:pdf_file
)
1920 (check-option (cdr opt
) #'stringp
"a string" 1)))
1921 ($png_file
(setf (getf options
:png_file
)
1922 (check-option (cdr opt
) #'stringp
"a string" 1)))
1923 ($ps_file
(setf (getf options
:ps_file
)
1924 (check-option (cdr opt
) #'stringp
"a string" 1)))
1925 ($run_viewer
(setf (getf options
:run_viewer
)
1926 (check-option-boole (cdr opt
))))
1927 ($same_xy
(setf (getf options
:same_xy
)
1928 (check-option-boole (cdr opt
))))
1929 ($same_xyz
(setf (getf options
:same_xyz
)
1930 (check-option-boole (cdr opt
))))
1931 ($sample
(setf (getf options
:sample
)
1932 (check-option (cdr opt
) #'naturalp
"a natural number" 2)))
1933 ($style
(setf (getf options
:style
)
1934 (check-option-style (cdr opt
))))
1935 ($svg_file
(setf (getf options
:svg_file
)
1936 (check-option (cdr opt
) #'stringp
"a string" 1)))
1937 ($t
(setf (getf options
:t
) (cddr (check-range opt
))))
1938 ($title
(setf (getf options
:title
)
1939 (check-option (cdr opt
) #'stringp
"a string" 1)))
1940 ($transform_xy
(setf (getf options
:transform_xy
)
1941 (check-option-b (cdr opt
) #'functionp
"a function make_transform" 1)))
1942 ($window
(setf (getf options
:window
)
1943 (check-option (cdr opt
)
1944 #'(lambda (n) (and (integerp n
) (>= n
0)))
1945 "a non-negative integer" 1)))
1946 ($x
(setf (getf options
:x
) (cddr (check-range opt
))))
1947 ($xbounds
(setf (getf options
:xbounds
) (cddr (check-range opt
))))
1948 ($xlabel
(setf (getf options
:xlabel
)
1949 (check-option (cdr opt
) #'string
"a string" 1)))
1952 (setf (cddr opt
) (mapcar #'coerce-float
(cddr opt
))))
1953 (setf (getf options
:xtics
)
1954 (check-option-b (cdr opt
) #'realp
"a real number" 3)))
1957 (setf (cddr opt
) (mapcar #'coerce-float
(cddr opt
))))
1958 (setf (getf options
:xy_scale
)
1959 (check-option (cdr opt
) #'realpositivep
1960 "a positive real number" 2)))
1961 ($y
(setf (getf options
:y
) (cddr (check-range opt
))))
1962 ($ybounds
(setf (getf options
:ybounds
) (cddr (check-range opt
))))
1963 ($ylabel
(setf (getf options
:ylabel
)
1964 (check-option (cdr opt
) #'string
"a string" 1)))
1967 (setf (cddr opt
) (mapcar #'coerce-float
(cddr opt
))))
1968 (setf (getf options
:ytics
)
1969 (check-option-b (cdr opt
) #'realp
"a real number" 3)))
1972 (setf (caddr opt
) (coerce-float (caddr opt
))))
1973 (setf (getf options
:yx_ratio
)
1974 (check-option (cdr opt
) #'realp
"a real number" 1)))
1975 ($z
(setf (getf options
:z
) (cddr (check-range opt
))))
1976 ($zlabel
(setf (getf options
:zlabel
)
1977 (check-option (cdr opt
) #'string
"a string" 1)))
1980 (setf (caddr opt
) (coerce-float (caddr opt
))))
1981 (setf (getf options
:zmin
)
1982 (check-option-b (cdr opt
) #'realp
"a real number" 1)))
1985 (setf (cddr opt
) (mapcar #'coerce-float
(cddr opt
))))
1986 (setf (getf options
:ztics
)
1987 (check-option-b (cdr opt
) #'realp
"a real number" 3)))
1988 ($gnuplot_4_0
(setf (getf options
:gnuplot_4_0
)
1989 (check-option-boole (cdr opt
))))
1990 ($gnuplot_curve_titles
1991 (setf (getf options
:gnuplot_curve_titles
)
1992 (check-option (cdr opt
) #'stringp
"a string")))
1993 ($gnuplot_curve_styles
1994 (setf (getf options
:gnuplot_curve_styles
)
1995 (check-option (cdr opt
) #'stringp
"a string")))
1996 ($gnuplot_default_term_command
1997 (setf (getf options
:gnuplot_default_term_command
)
1998 (check-option (cdr opt
) #'stringp
"a string" 1)))
1999 ($gnuplot_dumb_term_command
2000 (setf (getf options
:gnuplot_dumb_term_command
)
2001 (check-option (cdr opt
) #'stringp
"a string" 1)))
2003 (setf (getf options
:gnuplot_out_file
)
2004 (check-option (cdr opt
) #'stringp
"a string" 1)))
2005 ($gnuplot_script_file
2006 (setf (getf options
:gnuplot_script_file
)
2007 (check-option (cdr opt
) #'(lambda(x) (or (stringp x
) (symbolp x
))) "a string or symbol" 1)
2008 (getf options
:plot_format
) '$gnuplot
))
2010 (setf (getf options
:gnuplot_pm3d
)
2011 (check-option-boole (cdr opt
))))
2013 (setf (getf options
:gnuplot_strings
)
2014 (check-option-boole (cdr opt
))))
2016 (setf (getf options
:gnuplot_preamble
)
2017 (check-option (cdr opt
) #'stringp
"a string" 1)))
2019 (setf (getf options
:gnuplot_postamble
)
2020 (check-option (cdr opt
) #'stringp
"a string" 1)))
2021 ($gnuplot_pdf_term_command
2022 (setf (getf options
:gnuplot_pdf_term_command
)
2023 (check-option (cdr opt
) #'stringp
"a string" 1)))
2024 ($gnuplot_png_term_command
2025 (setf (getf options
:gnuplot_png_term_command
)
2026 (check-option (cdr opt
) #'stringp
"a string" 1)))
2027 ($gnuplot_ps_term_command
2028 (setf (getf options
:gnuplot_ps_term_command
)
2029 (check-option (cdr opt
) #'stringp
"a string" 1)))
2030 ($gnuplot_svg_term_command
2031 (setf (getf options
:gnuplot_svg_term_command
)
2032 (check-option (cdr opt
) #'stringp
"a string" 1)))
2033 ;; gnuplot_term is a tricky one: when it is just default, dumb or
2034 ;; ps, we want it to be a symbol, but when it is more complicated,
2035 ;; i.e. "ps; size 16cm, 12cm", it must be a string and not a symbol
2037 (let ((s (caddr opt
)))
2039 (cond ((string= s
"default") (setq s
'$default
))
2040 ((string= s
"dumb") (setq s
'$dumb
))
2041 ((string= s
"ps") (setq s
'$ps
))))
2043 (setf (getf options
:gnuplot_term
) s
)
2045 (intl:gettext
"Wrong argument for plot option \"gnuplot_term\". Expecting a string or a symbol but found \"~M\".") s
))))
2048 (intl:gettext
"plot-options-parser: unknown plot option: ~M") opt
))))
2051 ($axes
(setf (getf options
:axes
) t
))
2052 ($box
(setf (getf options
:box
) t
))
2053 ($color_bar
(setf (getf options
:color_bar
) t
))
2054 ($color_bar_tics
(remf options
:color_bar_tics
))
2055 ($grid2d
(setf (getf options
:grid2d
) t
))
2056 ($legend
(remf options
:legend
))
2057 ($mesh_lines_color
(remf options
:mesh_lines_color
))
2058 ($logx
(setf (getf options
:logx
) t
))
2059 ($logy
(setf (getf options
:logy
) t
))
2060 ($palette
(remf options
:palette
))
2061 ($plot_realpart
(setf (getf options
:plot_realpart
) t
))
2062 ($run_viewer
(setf (getf options
:run_viewer
) t
))
2063 ($same_xy
(setf (getf options
:same_xy
) t
))
2064 ($same_xyz
(setf (getf options
:same_xyz
) t
))
2065 ($xtics
(remf options
:xtics
))
2066 ($ytics
(remf options
:ytics
))
2067 ($zmin
(remf options
:zmin
))
2068 ($gnuplot_4_0
(setf (getf options
:gnuplot_4_0
) t
))
2069 ($gnuplot_pm3d
(setf (getf options
:gnuplot_pm3d
) t
))
2070 ($gnuplot_strings
(setf (getf options
:gnuplot_strings
) t
))
2071 ($noaxes
(setf (getf options
:axes
) nil
))
2072 ($nobox
(setf (getf options
:box
) nil
))
2073 ($nocolor_bar
(setf (getf options
:color_bar
) nil
))
2074 ($nocolor_bat_tics
(setf (getf options
:color_bat_tics
) nil
))
2075 ($nogrid2d
(setf (getf options
:grid2d
) nil
))
2076 ($nolegend
(setf (getf options
:legend
) nil
))
2077 ($nologx
(setf (getf options
:logx
) nil
))
2078 ($nology
(setf (getf options
:logy
) nil
))
2079 ($nomesh_lines
(setf (getf options
:mesh_lines_color
) nil
))
2080 ($nopalette
(setf (getf options
:palette
) nil
))
2081 ($noplot_realpart
(setf (getf options
:plot_realpart
) nil
))
2082 ($norun_viewer
(setf (getf options
:run_viewer
) nil
))
2083 ($nosame_xy
(setf (getf options
:same_xy
) nil
))
2084 ($nosame_xyz
(setf (getf options
:same_xyz
) nil
))
2085 ($notransform_xy
(remf options
:transform_xy
))
2086 ($noxtics
(setf (getf options
:xtics
) nil
))
2087 ($noytics
(setf (getf options
:ytics
) nil
))
2088 ($noztics
(setf (getf options
:ztics
) nil
))
2089 ($nognuplot_strings
(setf (getf options
:gnuplot_strings
) nil
))
2091 (merror (intl:gettext
"Unknown plot option \"~M\".") opt
))))))
2094 ;; natural numbers predicate
2095 (defun naturalp (n) (or (and (integerp n
) (> n
0)) nil
))
2097 ;; positive real numbers predicate
2098 (defun realpositivep (x) (or (and (realp x
) (> x
0)) nil
))
2100 ;; posible values for the axes option
2101 (defun axesoptionp (o) (if (member o
'($x $y $solid
)) t nil
))
2103 ;; the 13 possibilities for the point types
2104 (defun pointtypep (p)
2105 (if (member p
'($bullet $circle $plus $times $asterisk $box $square
2106 $triangle $delta $wedge $nabla $diamond $lozenge
)) t nil
))
2108 ;; Colors can only one of the named colors or a six-digit hexadecimal
2109 ;; number with a # suffix.
2110 (defun plotcolorp (color)
2111 (cond ((and (stringp color
)
2112 (string= (subseq color
0 1) "#")
2113 (= (length color
) 7)
2114 (ignore-errors (parse-integer (subseq color
1 6) :radix
16)))
2116 ((member color
'($red $green $blue $magenta $cyan $yellow
2117 $orange $violet $brown $gray $black $white
))
2121 ;; tries to convert az into a floating-point number between 0 and 360
2122 (defun parse-azimuth (az) (mod ($float
(meval* az
)) 360))
2124 ;; tries to convert el into a floating-poitn number between -180 and 180
2125 (defun parse-elevation (el) (- (mod (+ 180 ($float
(meval* el
))) 360) 180))
2127 ;; The following functions check the value of an option returning an atom
2128 ;; when there is only one argument or a list when there are several arguments
2131 ;; Checks for one or more items of the same type, using the test given
2132 (defun check-option (option test type
&optional count
)
2134 (unless (= (1- (length option
)) count
)
2137 "Wrong number of arguments for plot option \"~M\". Expecting ~M but found ~M.")
2138 (car option
) count
(1- (length option
)))))
2139 (dolist (item (cdr option
))
2140 (when (not (funcall test item
))
2142 (intl:gettext
"Wrong argument for plot option \"~M\". Expecting ~M but found \"~M\".") (car option
) type item
)))
2143 (if (= (length option
) 2)
2147 ;; Accepts one or more items of the same type or false.
2148 ;; When given, n is the maximum number of items.
2149 (defun check-option-b (option test type
&optional count
)
2150 (let ((n (- (length option
) 1)))
2152 (unless (< n
(1+ count
))
2155 "Plot option ~M must have ~M arguments, not ~M.")
2156 (car option
) count
(1- (length option
)))))
2161 "Option ~M should be given arguments, or called by its name (no lists)")
2164 (if (or (funcall test
(cadr option
)) (null (cadr option
))
2165 (eq (cadr option
) t
))
2169 "Value of option ~M. should be ~M or false, not \"~M\".")
2170 (car option
) type
(cadr option
))))
2173 (unless (funcall test
(nth (+ i
1) option
))
2176 "Value of option ~M should be ~M, not \"~M\".")
2177 (car option
) type
(nth (+ i
1) option
))))
2180 ;; Boolean options can be [option], [option,true] or [option,false]
2181 (defun check-option-boole (option)
2182 (if (= 1 (length option
))
2184 (if (and (= 2 (length option
))
2185 (or (eq (cadr option
) t
) (null (cadr option
))))
2187 (merror (intl:gettext
"plot option ~M must be either true or false.")
2190 ;; label can be either [label, string, real, real] or
2191 ;; [label, [string_1, real, real],...,[string_n, real, real]]
2192 (defun check-option-label (option &aux opt
)
2193 (if (not ($listp
(cadr option
)))
2194 (setq opt
(list (cons '(mlist) (cdr option
))))
2195 (setq opt
(cdr option
)))
2197 (when (not (and ($listp item
) (= 4 (length item
)) (stringp (second item
))
2198 (realp (setf (third item
) (coerce-float (third item
))))
2199 (realp (setf (fourth item
) (coerce-float (fourth item
))))))
2202 "Wrong argument ~M for option ~M. Must be either [label,\"text\",x,y] or [label, [\"text 1\",x1,y1],...,[\"text n\",xn,yn]]")
2203 item
(car option
))))
2206 ;; one of the possible formats
2207 (defun check-option-format (option &aux formats
)
2208 (setq formats
'($geomview $gnuplot $gnuplot_pipes $mgnuplot $xmaxima
))
2209 (unless (member (cadr option
) formats
)
2212 "Wrong argument ~M for option ~M. Must one of the following symbols: geomview, gnuplot, mgnuplot, xmaxima (or gnuplot_pipes in Unix)")
2213 (cadr option
) (car option
)))
2216 ; palette most be one or more Maxima lists starting with the name of one
2217 ;; of the 5 kinds: hue, saturation, value, gray or gradient.
2218 (defun check-option-palette (option)
2219 (if (and (= (length option
) 2) (null (cadr option
)))
2222 (dolist (item (cdr option
))
2223 (when (not (and ($listp item
)
2225 '($hue $saturation $value $gray $gradient
))))
2228 "Wrong argument ~M for option ~M. Not a valid palette.")
2229 item
(car option
))))
2232 ;; style can be one or several of the names of the styles or one or several
2233 ;; Maxima lists starting with the name of one of the styles.
2234 (defun check-option-style (option)
2235 (if (and (= (length option
) 2) (null (cadr option
)))
2239 (dolist (item (cdr option
))
2241 (setq name
(second item
))
2243 (when (not (member name
2244 '($lines $points $linespoints $dots $impulses
)))
2247 "Wrong argument ~M for option ~M. Not a valid style")
2249 (setq parsed
(cons item parsed
)))
2250 (reverse parsed
)))))
2252 ;; Transform can be false or the name of a function for the transformation.
2253 (defun check-option-transform (option)
2254 (if (and (= (length option
) 2)
2255 (or (atom (cadr option
)) (null (cadr option
))))
2259 "Wrong argument ~M for option ~M. Should be either false or the name of function for the transformation") option
(car option
))))
2261 ;; levels can be a single natural number (requested number of levels)
2262 ;; or two or more floating-point numbers.
2263 (defun check-option-levels (option)
2265 ((< (length option
) 3)
2266 (check-option option
#'naturalp
"a natural number" 1))
2268 (mapcar #'coerce-float
(cdr option
))
2269 (check-option option
#'realp
"a real number" (1- (length option
))))))
2271 ;; Tries to get n numbers between fmin and fmax of the form d*10^e,
2272 ;; where d is either 1, 2 or 5.
2273 ;; It returns a list with n or less numbers
2274 ;; (adapted from procedure getticks of Xmaxima)
2276 (defun getlevels (fmin fmax n
)
2277 (let ((len (- fmax fmin
)) (best 0) levels val fac j1 j2 ans
)
2278 (dolist (v '(0.1
0.2 0.5))
2279 (setq val
(ceiling (/ (log (/ len n v
)) (log 10))))
2280 (setq fac
(/ 1 v
(expt 10 val
)))
2281 (setq j1
(ceiling (* fmin fac
)))
2282 (setq j2
(floor (* fmax fac
)))
2284 (do ((j j1
(1+ j
))) ((> j j2
))
2285 (push (/ j fac
) levels
))
2286 (when (> (length levels
) best
)
2287 (setq best
(length levels
))
2288 (setq ans
(copy-list levels
))))
2294 plot2d
(sec(x), [x
, -
2, 2], [y
, -
20, 20]);
2296 plot2d
(exp(3*s
), [s
, -
2, 2], logy
);
2298 plot2d
([parametric
, cos
(t), sin
(t), [t
, -%pi
, %pi
]], same_xy
);
2300 xy
:[[10,.6], [20,.9], [30,1.1], [40,1.3], [50,1.4]]$
2301 plot2d
( [ [discrete
, xy
], 2*%pi
*sqrt
(l/980) ], [l
, 0, 50],
2302 [style
, points
, lines
], [color
, red
, blue
], [point_type
, box
],
2303 [legend
, "experiment", "theory"],
2304 [xlabel
, "pendulum's length (cm)"], [ylabel
, "period (s)"]);
2306 plot2d
( x^
2-
1, [x
, -
3, 3], [y
, -
2, 10], nobox
, [color
, red
],
2307 [ylabel
, "x^2-1"], [plot_format
, xmaxima
]);
2309 plot2d
( x^
2+y^
2 = 1, [x
, -
2, 2], [y
, -
2 ,2]);
2312 (fun &optional xrange
&rest extra-options
2314 ($display2d nil
) (*plot-realpart
* *plot-realpart
*)
2315 (options (copy-tree *plot-options
*)) yrange output-file plot
)
2316 ;; fun must be a maxima list with several objects: expressions (simple
2317 ;; functions), maxima lists (parametric or discrete cases).
2318 ;; A single parametric or discrete plot is placed inside a maxima list.
2319 (setf (getf options
:type
) "plot2d")
2320 (when (and (consp fun
)
2321 (or (eq (second fun
) '$parametric
)
2322 (eq (second fun
) '$contour
)
2323 (eq (second fun
) '$discrete
)))
2324 (setq fun
`((mlist) ,fun
)))
2325 ;; If by now fun is not a maxima list, it is then a single expression
2326 (unless ($listp fun
) (setq fun
`((mlist) ,fun
)))
2327 ;; 2- Get names for the two axis and values for xmin and xmax if needed.
2328 ;; If any of the objects in the fun list is a simple function,
2329 ;; the xrange option is mandatory and will provide the name of
2330 ;; the horizontal axis and the values of xmin and xmax.
2331 (let ((xrange-required nil
) (bounds-required nil
) (yrange-required nil
)
2333 #-clisp
(setq small
(- (/ most-positive-flonum
1024)))
2334 #+clisp
(setq small
(- (/ most-positive-double-float
1024.0)))
2335 #-clisp
(setq huge
(/ most-positive-flonum
1024))
2336 #+clisp
(setq huge
(/ most-positive-double-float
1024.0))
2337 (setf (getf options
:ybounds
) (list small huge
))
2338 (dolist (f (rest fun
))
2343 (unless bounds-required
2344 (setq bounds-required t
)
2345 ;; Default X and Y bound large so parametric plots don't get
2346 ;; prematurely clipped. Don't use most-positive-flonum
2347 ;; because draw2d will overflow.
2348 (setf (getf options
:xbounds
) (list small huge
)))
2349 (setq prange
(check-range ($fourth f
))))
2351 (setq xrange
(check-range xrange
))
2352 (setq xrange-required t
)
2353 (unless yrange-required
2354 (setq yrange-required t
)
2355 (if (null extra-options
)
2357 (intl:gettext
"plot2d: Missing interval for variable 2."))
2359 (setq yrange
(pop extra-options
))
2360 (setq yrange
(check-range yrange
))
2361 (setf (getf options
:xvar
) ($first xrange
))
2362 (setf (getf options
:yvar
) ($first yrange
))
2363 (setf (getf options
:x
) (cddr xrange
))
2364 (setf (getf options
:y
) (cddr yrange
))))))
2369 "plot2d: a keyword 'parametric' or 'discrete' missing in ~M")
2371 ;; The expression represents a function, explicit or implicit
2373 (unless xrange-required
2374 (setq xrange-required t
)
2375 (setq xrange
(check-range xrange
))
2376 (setq xrange-required t
)
2377 (unless (getf options
:xlabel
)
2378 (setf (getf options
:xlabel
) (ensure-string (second xrange
))))
2379 (setf (getf options
:xvar
) (cadr xrange
))
2380 (setf (getf options
:x
) (cddr xrange
)))
2381 (when (and (listp f
) (eq 'mequal
(caar f
)))
2382 ;; Implicit function
2383 (unless yrange-required
2384 (setq yrange-required t
)
2385 (if (null extra-options
)
2387 (intl:gettext
"plot2d: Missing interval for variable 2."))
2389 (setq yrange
(pop extra-options
))
2390 (setq yrange
(check-range yrange
))
2391 (setf (getf options
:yvar
) ($first yrange
))
2392 (setf (getf options
:y
) (cddr yrange
)))))))))
2393 (when (not xrange-required
)
2394 ;; Make the default ranges on X nd Y large so parametric plots
2395 ;; don't get prematurely clipped. Don't use most-positive-flonum
2396 ;; because draw2d will overflow.
2397 (setf (getf options
:xbounds
) (list small huge
))
2399 ;; second argument was really a plot option, not an xrange
2400 (setq extra-options
(cons xrange extra-options
)))))
2401 ;; If no global options xlabel or ylabel have been given, choose
2402 ;; a default value for them: the expressions given, converted
2403 ;; to Maxima strings, if their length is less than 50 characters,
2404 ;; or the default "x" and "y" otherwise.
2405 (when (= (length fun
) 2)
2406 (let ((v (second fun
)) xlabel ylabel
)
2408 (setq xlabel
"x") (setq ylabel
($sconcat v
)))
2409 ((eq (second v
) '$parametric
)
2410 (setq xlabel
($sconcat
(third v
)))
2411 (setq ylabel
($sconcat
(fourth v
))))
2412 ((eq (second v
) '$discrete
)
2413 (setq xlabel
"x") (setq ylabel
"y"))
2414 ((eq (second v
) '$contour
)
2415 (setq xlabel
(ensure-string (getf options
:xvar
)))
2416 (setq ylabel
(ensure-string (getf options
:yvar
))))
2418 (setq xlabel
"x") (setq ylabel
($sconcat v
))))
2419 (unless (getf options
:xlabel
)
2420 (if (< (length xlabel
) 50) (setf (getf options
:xlabel
) xlabel
)))
2421 (unless (getf options
:ylabel
)
2422 (if (< (length ylabel
) 50) (setf (getf options
:ylabel
) ylabel
)))))
2423 ;; For explicit functions, default ylabel is the name of the 2nd variable
2424 (when (getf options
:yvar
)
2425 (setf (getf options
:ylabel
) ($sconcat
(getf options
:yvar
))))
2426 ;; Parse the given options into the options list
2427 (setq options
(plot-options-parser extra-options options
))
2428 (when (getf options
:y
) (setf (getf options
:ybounds
) (getf options
:y
)))
2429 ;; Remove axes labels when no box is used in gnuplot
2430 (when (and (member :box options
) (not (getf options
:box
))
2431 (not (eq (getf options
:plot_format
) '$xmaxima
)))
2432 (remf options
:xlabel
)
2433 (remf options
:ylabel
))
2434 ;; check options given
2435 (let ((xmin (first (getf options
:x
))) (xmax (second (getf options
:x
))))
2437 (and (getf options
:logx
) xmin xmax
)
2440 (let ((revised-xmin (/ xmax
1000)))
2443 "plot2d: lower bound must be positive when using 'logx'.~%plot2d: assuming lower bound = ~M instead of ~M")
2445 (setf (getf options
:x
) (list revised-xmin xmax
))
2446 (setq xrange
`((mlist) ,(second xrange
) ,revised-xmin
,xmax
))))
2449 "plot2d: upper bound must be positive when using 'logx'; found: ~M")
2451 (let ((ymin (first (getf options
:y
)))
2452 (ymax (second (getf options
:y
))))
2453 (when (and (getf options
:logy
) ymin ymax
)
2456 (let ((revised-ymin (/ ymax
1000)))
2459 "plot2d: lower bound must be positive when using 'logy'.~%plot2d: assuming lower bound = ~M instead of ~M")
2461 (setf (getf options
:y
) (list revised-ymin ymax
))))
2464 "plot2d: upper bound must be positive when using 'logy'; found: ~M")
2466 (setq *plot-realpart
* (getf options
:plot_realpart
))
2467 ;; Creates the object that will be passed to the external graphic program
2468 (case (getf options
:plot_format
)
2470 (setq plot
(make-instance 'xmaxima-plot
)))
2472 (setq plot
(make-instance 'gnuplot-plot
)))
2474 (setq plot
(make-instance 'gnuplot-plot
))
2475 (setf (slot-value plot
'pipe
) T
))
2477 (merror (intl:gettext
"plot2d: plot format ~M not supported")
2478 (getf options
:plot_format
))))
2479 ;; Parse plot object and pass it to the graphic program
2480 (setq output-file
(plot-preamble plot options
))
2481 (plot2d-command plot fun options xrange
)
2482 (plot-shipout plot options output-file
))
2485 (and (symbolp x
) (char= (char (symbol-value x
) 0) #\$
)))
2487 (defmfun $tcl_output
(lis i
&optional
(skip 2))
2488 (when (not (typep i
'fixnum
))
2490 (intl:gettext
"tcl_ouput: second argument must be an integer; found ~M")
2492 (when (not ($listp lis
))
2494 (intl:gettext
"tcl_output: first argument must be a list; found ~M") lis
))
2495 (format *standard-output
* "~% {")
2496 (cond (($listp
(second lis
))
2499 (format *standard-output
* "~,,,,,,'eg " (nth i v
))))
2501 (setq lis
(nthcdr i lis
))
2502 (loop with v
= lis while v
2504 (format *standard-output
* "~,,,,,,'eg " (car v
))
2505 (setq v
(nthcdr skip v
)))))
2506 (format *standard-output
* "~% }"))
2508 (defun tcl-output-list ( st lis
)
2514 when
(eql 0 (mod n
5))
2517 (format st
"~,,,,,,'eg " v
))
2519 (t (tcl-output-list st
(car lis
))
2520 (tcl-output-list st
(cdr lis
)))))
2522 (defun check-range (range &aux tem a b
)
2523 (or (and ($listp range
)
2524 (setq tem
(cdr range
))
2525 (or (symbolp (car tem
)) ($subvarp
(car tem
)))
2526 (numberp (setq a
($float
(meval* (second tem
)))))
2527 (numberp (setq b
($float
(meval* (third tem
)))))
2531 (intl:gettext
"plotting: range must be of the form [variable, min, max]; found: ~M")
2534 (intl:gettext
"plotting: no range given; must supply range of the form [variable, min, max]"))))
2535 `((mlist) ,(car tem
) ,(float a
) ,(float b
)))
2537 (defmfun $zero_fun
(x y
) x y
0.0)
2539 (defun output-points (pl &optional m
)
2540 "If m is supplied print blank line every m lines"
2542 (declare (fixnum j
))
2543 (loop for i below
(length (polygon-pts pl
))
2544 with ar
= (polygon-pts pl
)
2545 do
(print-pt (aref ar i
))
2547 (print-pt (aref ar i
))
2549 (print-pt (aref ar i
))
2553 (cond ((eql j
(the fixnum m
))
2558 (defun output-points-tcl (dest pl m
)
2559 (format dest
" {matrix_mesh ~%")
2560 ;; x y z are done separately:
2561 (loop for off from
0 to
2
2562 with ar
= (polygon-pts pl
)
2563 with i of-type fixnum
= 0
2567 while
(< i
(length ar
))
2568 do
(format dest
"~% {")
2570 do
(print-pt (aref ar i
))
2572 (format dest
"}~%"))
2573 (format dest
"}~%"))
2574 (format dest
"}~%"))
2576 (defun show-open-plot (ans file
)
2577 (cond ($show_openplot
2578 (with-open-file (st1 (plot-temp-file (format nil
"maxout~d.xmaxima" (getpid))) :direction
:output
:if-exists
:supersede
)
2580 ($system
(concatenate 'string
*maxima-prefix
*
2581 (if (string= *autoconf-windows
* "true") "\\bin\\" "/bin/")
2582 $xmaxima_plot_command
)
2583 #-
(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
2584 (format nil
" ~s &" file
)
2585 #+(or (and sbcl win32
) (and sbcl win64
) (and ccl windows
))
2587 (t (princ ans
) "")))
2589 ;; contour_plot now punts to plot2d
2590 (defmfun $contour_plot
(expr &rest optional-args
)
2591 (let ((command "plot2d ([contour, "))
2592 (setq command
($sconcat command expr
"]"))
2594 (dolist (arg optional-args
)
2595 (setq command
($sconcat command
", " arg
))))
2596 (setq command
($sconcat command
")"))
2597 (mtell (intl:gettext
"contour_plot is now obsolete. Using plot2d instead:~%"))
2598 (mtell "~M~%" command
)
2599 (apply #'$plot2d
(cons `((mlist) $contour
,expr
) optional-args
))))
2604 plot3d
(2^
(-u^
2 + v^
2), [u
, -
3, 3], [v
, -
2, 2], [palette
, false
]);
2606 plot3d
( log
( x^
2*y^
2 ), [x
, -
2, 2], [y
, -
2, 2], [grid
, 29, 29]);
2608 expr_1
: cos
(y)*(10.0
+6*cos
(x))$
2609 expr_2
: sin
(y)*(10.0
+6*cos
(x))$
2611 plot3d
([expr_1
, expr_2
, expr_3
], [x
, 0, 2*%pi
], [y
, 0, 2*%pi
],
2612 ['grid
, 40, 40], [z
,-
8,8]);
2614 plot3d
(cos (-x^
2 + y^
3/4), [x
, -
4, 4], [y
, -
4, 4],
2615 [mesh_lines_color
, false
], [elevation
, 0], [azimuth
, 0], [grid
, 150, 150]);
2617 spherical
: make_transform
([th
, phi
,r
], r
*sin
(phi)*cos
(th),
2618 r
*sin
(phi)*sin
(th), r
*cos
(phi))$
2619 plot3d
( 5, [th
, 0, 2*%pi
], [phi
, 0, %pi
], [transform_xy
, spherical
],
2620 [palette
, [value
, 0.65, 0.7, 0.1, 0.9]], [plot_format
,xmaxima
]);
2622 V
: 1 / sqrt
( (x+1)^
2+y^
2 ) -
1 / sqrt
( (x-1)^
2+y^
2 )$
2623 plot3d
( V
, [x
, -
2, 2], [y
, -
2, 2], [z
, -
4, 4]);
2626 (fun &rest extra-options
2628 lvars xrange yrange titles output-file functions exprn domain tem
2629 (options (copy-tree *plot-options
*)) (*plot-realpart
* *plot-realpart
*)
2630 (usage (intl:gettext
2632 To plot a single function f of 2 variables v1 and v2:
2633 plot3d (f, [v1, min, max], [v2, min, max], options)
2634 A parametric representation of a surface with parameters v1 and v2:
2635 plot3d ([f1, f2, f3], [v1, min, max], [v2, min, max], options)
2636 Several functions depending on the two variables v1 and v2:
2637 plot3d ([f1, f2, ..., fn, [v1, min, max], [v2, min, max]], options)")))
2638 (setf (getf options
:type
) "plot3d")
2639 ;; Ensure that fun is a list of expressions and maxima lists, followed
2640 ;; by a domain definition
2642 (if (= 1 (length (check-list-plot3d fun
)))
2643 ;; fun consisted of a single parametric expression
2644 (setq fun
`(,fun
,(pop extra-options
) ,(pop extra-options
)))
2645 ;; fun was a maxima list with several independent surfaces
2647 ;; fun consisted of a single expression
2648 (setq fun
`(,fun
,(pop extra-options
) ,(pop extra-options
))))
2649 ;; go through all the independent surfaces creating the functions stack
2651 (setq exprn
(pop fun
))
2654 (setq domain
(check-list-plot3d exprn
))
2655 (case (length domain
)
2657 ;; exprn is a parametric representation of a surface
2658 (let (vars1 vars2 vars3
)
2659 ;; list fun should have two valid ranges after exprn
2660 (setq xrange
(check-range (pop fun
)))
2661 (setq yrange
(check-range (pop fun
)))
2662 ;; list of the two variables for the parametric equations
2663 (setq lvars
`((mlist),(second xrange
) ,(second yrange
)))
2664 ;; make sure that the 3 parametric equations depend only
2665 ;; on the two variables in lvars
2669 (coerce-float-fun (second exprn
) lvars
"plot3d")
2670 (second lvars
) (third lvars
))))
2674 (coerce-float-fun (third exprn
) lvars
"plot3d")
2675 (second lvars
) (third lvars
))))
2679 (coerce-float-fun (fourth exprn
) lvars
"plot3d")
2680 (second lvars
) (third lvars
))))
2681 (setq lvars
($listofvars
`((mlist) ,vars1
,vars2
,vars3
)))
2682 (if (<= ($length lvars
) 2)
2683 ;; we do have a valid parametric set. Push it into
2684 ;; the functions stack, along with their domain
2686 (push `(,exprn
,xrange
,yrange
) functions
)
2687 ;; add a title to the titles stack
2688 (push "Parametric function" titles
)
2689 ;; unknown variables in the parametric equations
2690 ;; ----- GNUPLOT 4.0 WORK-AROUND -----
2691 (when (and ($constantp
(fourth exprn
))
2692 (getf options
:gnuplot_4_0
))
2693 (setf (getf options
:const_expr
)
2694 ($float
(meval (fourth exprn
))))))
2696 (intl:gettext
"plot3d: there must be at most two variables; found: ~M")
2699 ;; expr is a simple function with its own domain. Push the
2700 ;; function and its domain into the functions stack
2701 (setq xrange
(second domain
))
2702 (setq yrange
(third domain
))
2703 (push `(,(second exprn
) ,xrange
,yrange
) functions
)
2704 ;; push a title for this plot into the titles stack
2705 (if (< (length (ensure-string (second exprn
))) 36)
2706 (push (ensure-string (second exprn
)) titles
)
2707 (push "Function" titles
)))
2709 ;; syntax error. exprn does not have the expected form
2712 "plot3d: argument must be a list of three expressions; found: ~M")
2715 ;; exprn is a simple function, defined in the global domain.
2716 (if (and (getf options
:xvar
) (getf options
:yvar
))
2717 ;; the global domain has already been defined; use it.
2719 (setq xrange
`((mlist) ,(getf options
:xvar
)
2720 ,(first (getf options
:x
))
2721 ,(second (getf options
:x
))))
2722 (setq yrange
`((mlist) ,(getf options
:yvar
)
2723 ,(first (getf options
:y
))
2724 ,(second (getf options
:y
)))))
2725 ;; the global domain should be defined by the last two lists
2726 ;; in fun. Extract it and check whether it is valid.
2730 (check-list-plot3d (append `((mlist) ,exprn
) (last fun
2))))
2731 (setq fun
(butlast fun
2))
2732 (if (= 3 (length domain
))
2733 ;; domain is valid. Make it the global one.
2735 (setq xrange
(second domain
))
2736 (setq yrange
(third domain
))
2737 (setf (getf options
:xvar
) (second xrange
))
2738 (setf (getf options
:x
) (cddr xrange
))
2739 (setf (getf options
:yvar
) (second yrange
))
2740 (setf (getf options
:y
) (cddr yrange
)))
2742 ;; ----- GNUPLOT 4.0 WORK-AROUND -----
2743 (when (and ($constantp exprn
) (getf options
:$gnuplot_4_0
))
2744 (setf (getf options
:const_expr
) ($float
(meval exprn
))))
2745 ;; push the function and its domain into the functions stack
2746 (push `(,exprn
,xrange
,yrange
) functions
)
2747 ;; push a title for this plot into the titles stack
2748 (if (< (length (ensure-string exprn
)) 36)
2749 (push (ensure-string exprn
) titles
)
2750 (push "Function" titles
))))
2751 (when (= 0 (length fun
)) (return)))
2752 ;; recover the original ordering for the functions and titles stacks
2753 (setq functions
(reverse functions
))
2754 (setq titles
(reverse titles
))
2755 ;; parse the options given to plot3d
2756 (setq options
(plot-options-parser extra-options options
))
2757 (setq tem
(getf options
:transform_xy
))
2758 (when (and (member :gnuplot_pm3d options
) (null (getf options
:gnuplot_pm3d
)))
2759 (setf (getf options
:palette
) nil
))
2760 (setq *plot-realpart
* (getf options
:plot_realpart
))
2761 ;; set up the labels for the axes, unless no box is being shown
2762 (unless (and (member :box options
) (not (getf options
:box
)))
2763 (if (and (getf options
:xvar
) (getf options
:yvar
) (null tem
))
2765 ;; Don't set xlabel (ylabel) if the user specified one.
2766 (unless (getf options
:xlabel
)
2767 (setf (getf options
:xlabel
) (ensure-string (getf options
:xvar
))))
2768 (unless (getf options
:ylabel
)
2769 (setf (getf options
:ylabel
) (ensure-string (getf options
:yvar
)))))
2771 (setf (getf options
:xlabel
) "x")
2772 (setf (getf options
:ylabel
) "y")))
2773 (unless (getf options
:zlabel
) (setf (getf options
:zlabel
) "z")))
2774 ;; x and y should not be bound, when an xy transformation function is used
2775 (when tem
(remf options
:x
) (remf options
:y
))
2776 ;; Set up the plot command
2777 (let (plot (legend (getf options
:legend
)))
2778 ;; titles will be a list. Titles given in the legend option prevail
2779 ;; over titles generated by plot3d. No legend if option [legend,false]
2780 (unless (listp legend
) (setq legend
(list legend
)))
2781 (when (member :legend options
)
2782 (if (first legend
) (setq titles legend
)) (setq titles nil
))
2783 (case (getf options
:plot_format
)
2785 (setq plot
(make-instance 'xmaxima-plot
)))
2787 (setq plot
(make-instance 'gnuplot-plot
)))
2789 (setq plot
(make-instance 'gnuplot-plot
))
2790 (setf (slot-value plot
'pipe
) T
))
2792 (setq plot
(make-instance 'geomview-plot
)))
2794 (merror (intl:gettext
"plot3d: plot format ~M not supported")
2795 (getf options
:plot_format
))))
2796 ;; Parse plot object and pass it to the graphic program
2797 (setq output-file
(plot-preamble plot options
))
2798 (plot3d-command plot functions options titles
)
2799 (plot-shipout plot options output-file
)))
2801 ;; Given a Maxima list with 3 elements, checks whether it represents a function
2802 ;; defined in a 2-dimensional domain or a parametric representation of a
2803 ;; 3-dimensional surface, depending on two parameters.
2804 ;; The return value will be a Maxima list if the test is succesfull or nil
2806 ;; In the case of a function and a 2D domain, it returns the domain, validated.
2807 ;; When it is a parametric representation it returns an empty Maxima list.
2809 (defun check-list-plot3d (lis)
2810 (let (xrange yrange
)
2811 ;; Makes sure list has the form ((mlist) $atom item1 item2)
2812 (unless (and ($listp lis
) (= 3 ($length lis
)) (not ($listp
(second lis
))))
2813 (return-from check-list-plot3d nil
))
2814 ;; we might have a function with domain or a parametric representation
2815 (if ($listp
(third lis
))
2816 ;; lis is probably a function with a valid domain
2817 (if ($listp
(fourth lis
))
2818 ;; we do have a function and a domain. Return the domain
2820 (setq xrange
(check-range (third lis
)))
2821 (setq yrange
(check-range (fourth lis
)))
2822 (return-from check-list-plot3d
`((mlist) ,xrange
,yrange
)))
2823 ;; wrong syntax: [expr1, list, expr2]
2824 (return-from check-list-plot3d nil
))
2825 ;; lis is probably a parametric representation
2826 (if ($listp
(fourth lis
))
2827 ;; wrong syntax: [expr1, expr2, list]
2828 (return-from check-list-plot3d nil
)
2829 ;; we do have a parametric representation. Return an empty list
2830 (return-from check-list-plot3d
'((mlist)))))))