1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
<HTML><HEAD><TITLE>Manpage of QUICKPLOT</TITLE>
</HEAD><BODY>
<H1>QUICKPLOT</H1>
Section: User Commands (1)<BR><A HREF="#index">Index</A>
<HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
quickplot - quick interactive 2-D plotter with zoom and value display
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<B>quickplot [OPTIONS] [X-OPTIONS] [file1 [file2] ... ]</B>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION</H2>
<I>quickplot</I>
plots the named data files to any number of
two dimensional plots.
<P>
<B>To zoom in: </B>
While moving the pointer in the plot window,
press and hold the middle mouse button
and then release the button when the zoom box is where
you want it.
<B>To zoom back to the previous zoom level:</B>
press the middle mouse button
and pull the zoom box from inside the plot window
to one edge of the plot window and then release the button.
<B>To zoom back to the full plot of all the data:</B>
press the middle mouse button and
pull the zoom box from inside the plot window
to two edges (at a corner) of the plot window,
and then release the button.
The
left mouse button
can be pressed in the plot window to show linearly interpolated
function plot values.
The right mouse button can be pressed in the plot window to show
values at any point (including non-plot values and plot values).
<P>
The default input
file format is an ASCII file with any number of fields (values) for each
data point.
Each field must be delimited by a space, tab, comma or any combination
and/or number of these characters.
Each data point (set of values) must be separated by a new line character.
<P>
For example the data:
<P>
<DL COMPACT><DT><DD>
<PRE>
0.0 1 1e-5
<BR>
0.1 2 3.1e-5
<BR>
0.2 3 4.5e-5
<BR>
0.3 4 7.7e-5
<BR>
0.4 5 8.2e-5
</PRE>
</DL>
<P>
has 3 fields and 5 points.
<P>
If no input file is given on the command line
<I>quickplot</I>
will read data from standard input.
<P>
When one field of data in loaded by quickplot an additional field
will be generated that is a count, 0 1 2 3 4 ... and so on, of
the one loaded field.
The default plot in this case will be a function plot of the one
loaded field VS the generated count field.
<A NAME="lbAE"> </A>
<H2>OPTIONS</H2>
<DL COMPACT>
<DT><B>-b </B>or --binary
<DD>
Input data in the binary format: The binary format is one int, that is
equal to the number of fields (values) in each data point, followed
by the data as doubles one point at a time. For example if your data file
has 3 fields the data could be represented like this: 3 x0 y0 z0
x1 y1 z1 x2 y2 z2 x3 y3 z3 x4 y4 z4 ..., if there are 5 points, that's
one int followed by 15 doubles. By default the input data format is ASCII.
<DT><B>-f </B><I>LIST</I> or --function-plot=<I>LIST</I>
<DD>
List of function plots. Example: quickplot -f "1 0 2 1"
will plot data field 1 VS 0 and 2 VS 1. The independent variable in
a function plot must always be increasing. If the options -f or --func-plot and
-p or --phase-plot are not used the default plots will be function plots
of all fields against field 0.
<DT><B>-h </B>or --help
<DD>
Display some help and then exit.
<DT><B>-l </B><I>LIST</I> or --labels=<I>LIST</I>
<DD>
Label the fields in the fields in the value window with the strings in
<I>LIST</I>.
Example: quickplot -l "time voltage current" will
label the first field as "time",
the second field as "voltage" and the third field as "current".
That is assuming that the label separator is a space. Use option -L
to change the label separator character from the default of space.
<DT><B>-n </B>or --no-lines
<DD>
Plot without lines and show just the points.
<DT><B>-p </B><I>LIST</I> or --phase-plot=<I>LIST</I>
<DD>
List of phase plots. Example: quickplot -p "1 0 2 1"
will plot data field 1 VS 0 and 2 VS 1. The independent variable in
a phase plot doesn't have to be always increasing.
<DT><B>-s </B>or --same-scale
<DD>
Plot all plots on the same scale.
<DT><B>-v </B>or --verbose
<DD>
Print more information to standard error.
<DT><B>-B </B>or --black-and-white
<DD>
Display the plots in black and white.
<DT><B>-L </B><I>CHAR</I> or --label-separator=<I>CHAR</I>
<DD>
Change the label separator to the character <I>CHAR</I>. See option -l.
<DT><B>-P </B>or --pipe
<DD>
Read data in from standard input. If no
<I>datafilename</I>
is given this will be the default.
This option will force
<I>quickplot</I>
to wait for data from standard input indefinitely.
By default
<I>quickplot</I>
looks for standard input but if a
<I>datafilename</I>
is given it stops looking
for data from standard input in some short amount of time.
<DT><B>-R </B>or --read-labels
<DD>
Read in the labels from the files from first line that is not skipped.
This will only work for ascii input files. Option -l will override
this option. If this option is given along with option -l
the labels will not be read from the files, but one additional line
will be skipped in reading the data from the files.
<DT><B>-S </B><I>NUM</I> or --skip-lines=<I>NUM</I>
<DD>
Skip the first
<I>NUM</I>
lines from all input. If the -b or --binary option is given the first
<I>NUM</I>
data points will be skipped.
<DT><B>-V </B>or --version
<DD>
Print version number, compile date, who compiled this quickplot and
some license information to standard output.
If you want just the version number try for example:
<B> quickplot --version | awk '/version: / {print $2}'</B>
<DT><B>-X </B>or --no-pixmap
<DD>
Don't load a piXmap of the first view of the plot. By default
<I>quickplot</I>
loads the first zoom level display into a X pixmap, so that it can draw it
faster in all forthcomming redraws of the first zoom level.
<P>
</DL>
<A NAME="lbAF"> </A>
<H2>X-OPTIONS</H2>
<P>
<I>quickplot</I> can be started with the following X options:
<P>
<DL COMPACT>
<DT><B>-bg </B><I>color</I> or -background <I>color</I>
<DD>
Set application background color to <I>color</I>.
<DT><B>-fg </B><I>color</I> or -foreground <I>color</I>
<DD>
Set application foreground color to <I>color</I>.
<DT><B>-bd </B><I>color</I> or -bordercolor <I>color</I>
<DD>
Set application bordercolor color to <I>color</I>.
<DT><B>-bw </B><I>width</I> or -borderwidth <I>width</I>
<DD>
Set application borderwidth to <I>width</I>.
<DT><B>-display </B><I>displayname</I>
<DD>
Set application X display to <I>displayname</I>.
<DT><B>-fn </B><I>font</I> or -font <I>font</I>
<DD>
Set application font to <I>font</I>. Run <I>xlsfonts</I> to see a list of
available fonts.
<DT><B>-geometry </B><I>geometry</I>
<DD>
Set application geometry. For example:
<DL COMPACT><DT><DD>
<PRE>
% quickplot -geometry 1000x1000+0+0 datafile
</PRE>
</DL>
<DT><B>-iconic</B>
<DD>
Initial application as an icon.
<DT><B>-name </B><I>name</I>
<DD>
Set the application resource name to <I>name</I>.
<DT><B>-title </B><I>title</I>
<DD>
Pass the title <I>title</I> to the window manager.
<DT><B>-rv </B>or -reverse
<DD>
Reverse the video, i.e. set black to white and vice-versa.
This is the default. Lance likes it this way.
<DT><B>+rv</B>
<DD>
Don't reverse the video.
<DT><B>-selectionTimeout </B><I>Time</I>
<DD>
Set selection timeout time to <I>Time</I> in milliseconds.
<DT><B>-synchronous</B>
<DD>
Enable synchronous behavior.
<DT><B>+synchronous</B>
<DD>
Disable synchronous behavior.
<DT><B>-xnllanguage </B><I>language</I>
<DD>
Set application national language to <I>language</I>.
<DT><B>-xrm </B><I>resourceString</I>
<DD>
Set the resource <I>resourceString</I>.
<DT><B>-xtsessionID </B><I>ID</I>
<DD>
Set the SM session ID to <I>ID</I>. I don't know what this is.
</DL>
<A NAME="lbAG"> </A>
<H2>AUTHOR</H2>
Lance Arsenault, <A HREF="mailto:quickplot@kachinatech.com">quickplot@kachinatech.com</A>,
first release: Febuary 1998, last update of this manpage: January 13, 1999.
Quickplot homepage: <A HREF="http://www.KachinaTech.COM/~quickplot/">http://www.KachinaTech.COM/~quickplot/</A>
<A NAME="lbAH"> </A>
<H2>SEE ALSO</H2>
<B>gnuplot</B>(1),
<B><A HREF="test_data.1.man.html">test_data</A></B>(1)
<A NAME="lbAI"> </A>
<H2>COPYRIGHT</H2>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2
of the License.
<P>
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
<A NAME="lbAJ"> </A>
<H2>BUGS</H2>
Send bug reports to:
<A HREF="mailto:quickplot@kachinatech.com">quickplot@kachinatech.com</A>
<P>
<HR>
<A NAME="index"> </A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
<DT><A HREF="#lbAE">OPTIONS</A><DD>
<DT><A HREF="#lbAF">X-OPTIONS</A><DD>
<DT><A HREF="#lbAG">AUTHOR</A><DD>
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
<DT><A HREF="#lbAI">COPYRIGHT</A><DD>
<DT><A HREF="#lbAJ">BUGS</A><DD>
</DL>
<HR>
This document was created by
<b>man2html</b>,
using the manual pages.<BR>
Time: 16:27:53 GMT, August 21, 1998
</HTML>
<hr> Updated:<b><!--date--> 20 February 1999 01:23:57 AM CST </b> </body>
|