Overview Clamps Packages CM Dictionary Clamps Dictionary Fomus
Next: msg , Previous: mix-bus-to-out , Up: M , Home: Overview

Clamps Dictionary

mplot

Function

(mplot data &rest args &key xrange yrange (lt :points) |3d| (data-fn #'gnuplot-data-fn) (options *gnuplot-options*) (grid t))

Plot multiple input data given as sequences in one graph. The arguments and keys are like the arguments for plot. In contrast to plot, only sequences are currently supported.

Example

(mplot
 (list
  (let* ((fn (fit-quadratic 1 3 7 6.8 14 14))
         (values (cons 0 (loop for x from 1 to 14 collect (funcall fn x)))))
    (mapcar #'list (integrate values) (mapcar #'dround (cdr values))))
  (let* ((fn (fit-quadratic 1 6.2 6 9.6 11 14))
         (values (cons 0 (loop for x from 1 to 11 collect (funcall fn x)))))
    (mapcar #'list (integrate values) (mapcar #'dround (cdr values)))))
 :xrange '(-5 100)
 :yrange '(-1 15)
 :lt :points)
desintegrations-plot.svg
Figure 11: Plot of Tristan Murail's example of Desintegrations

See also

Author: Orm Finnendahl

Created: 2025-12-12 Fr 21:35

Validate