mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-06 06:21:16 +08:00
minor documentation updates
This commit is contained in:
parent
2aa51d2a60
commit
e79659a10d
@ -1677,7 +1677,10 @@ C<--xmin/xmax/ymin/ymax/y2min/y2max/zmin/zmax xxx>
|
|||||||
|
|
||||||
Set the range for the given axis. These x-axis bounds are ignored in a streaming
|
Set the range for the given axis. These x-axis bounds are ignored in a streaming
|
||||||
plot. The y2-axis bound do not apply in 3d plots. The z-axis bounds apply
|
plot. The y2-axis bound do not apply in 3d plots. The z-axis bounds apply
|
||||||
I<only> to 3d plots or colormaps.
|
I<only> to 3d plots or colormaps. Note that there is no C<--xrange> to set both
|
||||||
|
sides at once or C<--xinv> to flip the axis around: anything more than the
|
||||||
|
basics supported in this option is clearly obtainable by talking to gnuplot, for
|
||||||
|
instance C<--set 'xrange [20:10]'> to set the given inverted bounds.
|
||||||
|
|
||||||
=item
|
=item
|
||||||
|
|
||||||
@ -1819,9 +1822,9 @@ Gnuplot can plot both data and symbolic equations. C<feedgnuplot> generally
|
|||||||
plots data, but with this option can plot symbolic equations I<also>. This is
|
plots data, but with this option can plot symbolic equations I<also>. This is
|
||||||
generally intended to augment data plots, since for equation-only plots you
|
generally intended to augment data plots, since for equation-only plots you
|
||||||
don't need C<feedgnuplot>. C<--equation> can be passed multiple times for
|
don't need C<feedgnuplot>. C<--equation> can be passed multiple times for
|
||||||
multiple equations. The given strings are passed to gnuplot directly without any
|
multiple equations. The given strings are passed to gnuplot directly without
|
||||||
thing added or removed, so styling and such should be applied in the string. A
|
anything added or removed, so styling and such should be applied in the string.
|
||||||
basic example:
|
A basic example:
|
||||||
|
|
||||||
seq 100 | awk '{print $1/10, $1/100}' |
|
seq 100 | awk '{print $1/10, $1/100}' |
|
||||||
feedgnuplot --with 'lines lw 3' --domain --ymax 1
|
feedgnuplot --with 'lines lw 3' --domain --ymax 1
|
||||||
@ -1884,8 +1887,10 @@ C<--monotonic>
|
|||||||
If C<--domain> is given, checks to make sure that the x-coordinate in the input
|
If C<--domain> is given, checks to make sure that the x-coordinate in the input
|
||||||
data is monotonically increasing. If a given x-variable is in the past, all data
|
data is monotonically increasing. If a given x-variable is in the past, all data
|
||||||
currently cached for this curve is purged. Without C<--monotonic>, all data is
|
currently cached for this curve is purged. Without C<--monotonic>, all data is
|
||||||
kept. Does not make sense with 3d plots. No C<--monotonic> by default. The data is
|
kept. Does not make sense with 3d plots. No C<--monotonic> by default. The data
|
||||||
replotted before being purged
|
is replotted before being purged. This is useful in streaming plots where the
|
||||||
|
incoming data represents multiple iterations of the same process (repeated
|
||||||
|
simulations of the same period in time, for instance).
|
||||||
|
|
||||||
=item
|
=item
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user