Plots with Units
Calling Sequence
Parameters
Options
Description
Notes
Examples
Compatibility
plot(f, r1, r2, opts)
plot3d(f, r1, r2, opts)
plot([x, y, r1], opts)
plot3d([x, y, z], r1, r2, opts)
f
-
expression or procedure to be plotted
r1, r2
ranges of the form a..b or var=a..b
opts
plotting options
x, y, z
expressions or procedures giving the coordinate values in parametric specification
useunits (boolean or list): Indicates presence of units in input or specifies units to be used.
The plot and plot3d commands allow input arguments that involve units. Units may appear in the expression or procedure to be plotted or in the range arguments. These units are then included in the axis labels.
This help page describes the use of units in the parameters of plot and plot3d. For general information about the calling sequences of these commands, see plot and plot3d.
If f is an expression containing a unit, then the plot is computed using the quantity, without the unit, and the unit is included as part of the dependent axis label (that is, the y-axis label for 2-D plots and the z-axis label for 3-D plots).
If f is a procedure that evaluates to a numeric value with a unit, then the unit is ignored during computation. (See the Notes section below for more information.)
The range arguments r1 and r2 can be in the form of a simple range, a..b, or an equation with a variable name as the left-hand side, var=a..b. If the range a..b contains a unit, then that unit is included in the label for that axis. The unit must then be given for both a and b. If a and b contain different units, then the plotting command attempts to convert them to a common unit and issues an error if this is not possible.
If the range argument r1 and/or r2 has a unit and f is an expression, then the corresponding variable(s) var will be substituted with an appropriate unit attached. If r1 and/or r2 has a unit and f is a procedure, then the corresponding argument(s) will have an appropriate unit attached.
The third and fourth calling sequences create parametric plots. The ranges have their end points a and b converted to a common unit if necessary, like in the first two calling sequences. However, these units do not correspond to the units on the axes. Instead, the units on the axes are taken from the x, y, and (if applicable) z arguments.
The useunits option may be used for two purposes:
useunits=true (or simply useunits) tells the plotting command that the input procedure involves computation with units. This is necessary if there is no other indication through the ranges of the presence of units.
useunits=[unit1, unit2] or [unit1, unit2, unit3] can be used to specify the units for each axis. What this means depends on whether this is a dependent or independent axis, and whether units would be used if no useunits option were given, and if so, which units. For each of the cases below, suppose the unit unitA is given through the useunits option. The unit unitB is defined as follows:
For a parametric plot, for the x-axis, unitB is the unit of the quantity to which x evaluates. If x evaluates to a unitless quantity, then unitB is equal to 1. For the y- and z-axes, unitB similarly depends on y and z, respectively.
For an independent axis in a nonparametric plot (the x-axis for 2D plots, and the x- and y-axes for 3D plots), unitB is the unit in which the range for this axis is given. If no unit is given, then unitB is equal to 1.
For a dependent axis in a nonparametric plot (the y-axis for 2D plots, and the z-axis for 3D plots), unitB is the unit of the quantity to which f evaluates. If f evaluates to a unitless quantity, then unitB is equal to 1.
If unitA and unitB are compatible, then the values plotted are rescaled so that they are expressed in unitA, and the axis label uses unitA. If the units are not compatible, then an error is raised, unless unitB is equal to 1 (the corresponding expression is unitless). In that last case, the axis label uses unitA but the values plotted are not modified.
In all cases, you can specify default for one or more of the units in the useunits option to set unitA equal to unitB.
If the labels option is provided, then that value is used for the axes labels, overriding any default labels computed from the function and range arguments or the useunits option.
All other plot options normally available with the plot and plot3d commands can be provided, but units in these option values are not generally understood or processed.
For the sake of efficient computation, if f or x or y or z is a procedure, values computed from it are assumed to be unit-free unless there is an indication that units are present. For this reason, you must explicitly specify the units desired, either through the ranges or through the useunits option. If the useunits=true option is not provided with a procedure that produces values containing units, an empty plot might result.
Plotting commands generally try to use the faster evalhf mode of computation whenever possible. (For more information about the evalhf mode, see the plot/computation help page.) However, evalhf does not work with procedures that return values with units. If you want to plot a procedure that involves extremely intensive computation, it is recommended you do not perform computations with units within the procedure.
For axis labels, any unit information provided in the ranges overrides units provided in the plotting function. Additionally, the value of the useunits option, if given, overrides all other unit information given in the other arguments. However, if the labels option is provided, then that is used by the plotting command to generate axis labels and units information is ignored.
Create a simple 2-D plot. The unit appears on the y-axis.
plot⁡x2⁢Unit⁡m,x=−5..5
Include units with the x-axis range.
plot⁡sin⁡x,x=−2⁢π⁢Unit⁡radians..2⁢π⁢Unit⁡radians,axis1=tickmarks=spacing⁡π,color=Indigo
In the example below, centimeters and meters are converted to a common unit.
plot⁡x2,0.5⁢x2,x=150⁢Unit⁡cm..5⁢Unit⁡m,axes=boxed
Use a procedure as input. The useunits option must be provided to indicate that the procedure involves computation with units.
plot⁡x↦x2⋅Unit⁡m,−5..5,useunits,thickness=2,color=DarkGreen
Include a unit with the x-axis and y-axis ranges.
plot⁡x↦cos⁡x,0..2⁢π⁢Unit⁡radians,−2⁢Unit⁡m..2⁢Unit⁡m,axis1=tickmarks=spacing⁡π2
A parametric plot with units.
speed≔10⁢Unit⁡fts
speed≔10⁢fts
frequency≔4⁢Unit⁡Hz
frequency≔4⁢Hz
plot⁡x2,sin⁡x⁢frequencyspeed,x=−5⁢Unit⁡m..5⁢Unit⁡m
Use the useunits option to specify units, while the computation does not involve units. This means that the specified units are incompatible with the ones given by the range and the computation. These units will be displayed in the axis labels. This is useful if the expression to be plotted cannot easily be made to accept units - for example, if it comes from a lookup table. In this case, it is essentially the same as the labels option.
lookup≔Interpolation:-Interpolate⁡seq⁡1..10,2,5,1,2,6,3,−4,2,4,5,method=nearest
lookup≔a nearest interpolation objectwith 10 points in 1-D
plot⁡lookup,1..10,useunits=Unit⁡s,Unit⁡m
plot⁡lookup,1..10,labels=Unit⁡s,Unit⁡m
Use the useunits option to specify units compatible with the ones given by the range and the computation. In this case the values for the independent and dependent axes will be converted appropriately.
plot3d⁡x2+2⁢y,x=−Unit⁡m..2⁢Unit⁡m,y=0..4⁢Unit⁡m2,useunits=Unit⁡ft,Unit⁡ft2,Unit⁡ft2
The Plots with Units command was updated in Maple 2022.
See Also
plot
plot/computation
plot/options
plot3d
plot3d/options
units
Download Help Document