[BACK]Return to table.trm CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot / term

File: [local] / OpenXM_contrib / gnuplot / term / Attic / table.trm (download)

Revision 1.1.1.1 (vendor branch), Sun Jan 9 17:01:16 2000 UTC (24 years, 4 months ago) by maekawa
Branch: GNUPLOT
CVS Tags: VERSION_3_7
Changes since 1.1: +0 -0 lines

Import gnuplot 3.7

/*
 * $Id: table.trm,v 1.5 1998/06/18 14:59:25 ddenholm Exp $
 *
 */

/* GNUPLOT - table.trm */

/*[
 * Copyright 1986 - 1993, 1998   Thomas Williams, Colin Kelley
 *
 * Permission to use, copy, and distribute this software and its
 * documentation for any purpose with or without fee is hereby granted,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.
 *
 * Permission to modify the software is granted, but not the right to
 * distribute the complete modified source code.  Modifications are to
 * be distributed as patches to the released version.  Permission to
 * distribute binaries produced by compiling modified sources is granted,
 * provided you
 *   1. distribute the corresponding source modifications from the
 *    released version in the form of a patch file along with the binaries,
 *   2. add special version identification to distinguish your version
 *    in addition to the base release version number,
 *   3. provide your name and address as the primary contact for the
 *    support of your modified version, and
 *   4. retain our contact information in regard to use of the base
 *    software.
 * Permission to distribute the released version of the source code along
 * with corresponding source modifications in the form of a patch file is
 * granted with same provisions 2 through 4 for binary distributions.
 *
 * This software is provided "as is" without express or implied warranty
 * to the extent permitted by applicable law.
]*/

/*
 * The terminal 'table' is built into the source code; it is not
 * available separately.  This file is needed only for building
 * the documentation for gnuplot 3.6 (or higher) using the new
 * including mechanismn.
 */

#ifdef TERM_REGISTER
register_term(table)
#endif

#ifdef TERM_HELP
START_HELP(table)
"1 table",
"?commands set terminal table",
"?set terminal table",
"?set term table",
"?terminal table",
"?term table",
"?table",
" Instead of producing a graph, the `table` terminal prints out the points on",
" which a graph would be based, i.e., the results of processing the `plot` or",
" `splot` command, in a multicolumn ASCII table of X Y {Z} R values.  The",
" character R takes on one of three values: \"i\" if the point is in the active",
" range, \"o\" if it is out-of-range, or \"u\" if it is undefined.  The data",
" format is determined by the format of the axis labels (see `set format`).",
"",
" For those times when you want the numbers, you can display them on the",
" screen or save them to a file.  This can be useful if you want to generate",
" contours and then save them for further use, perhaps for plotting with",
" `plot`;  see `set contour` for an example.  The same method can be used to",
" save interpolated data (see `set samples` and `set dgrid3d`)."
END_HELP(table)
#endif