Annotation of OpenXM_contrib/gnuplot/term/table.trm, Revision 1.1
1.1 ! maekawa 1: /*
! 2: * $Id: table.trm,v 1.5 1998/06/18 14:59:25 ddenholm Exp $
! 3: *
! 4: */
! 5:
! 6: /* GNUPLOT - table.trm */
! 7:
! 8: /*[
! 9: * Copyright 1986 - 1993, 1998 Thomas Williams, Colin Kelley
! 10: *
! 11: * Permission to use, copy, and distribute this software and its
! 12: * documentation for any purpose with or without fee is hereby granted,
! 13: * provided that the above copyright notice appear in all copies and
! 14: * that both that copyright notice and this permission notice appear
! 15: * in supporting documentation.
! 16: *
! 17: * Permission to modify the software is granted, but not the right to
! 18: * distribute the complete modified source code. Modifications are to
! 19: * be distributed as patches to the released version. Permission to
! 20: * distribute binaries produced by compiling modified sources is granted,
! 21: * provided you
! 22: * 1. distribute the corresponding source modifications from the
! 23: * released version in the form of a patch file along with the binaries,
! 24: * 2. add special version identification to distinguish your version
! 25: * in addition to the base release version number,
! 26: * 3. provide your name and address as the primary contact for the
! 27: * support of your modified version, and
! 28: * 4. retain our contact information in regard to use of the base
! 29: * software.
! 30: * Permission to distribute the released version of the source code along
! 31: * with corresponding source modifications in the form of a patch file is
! 32: * granted with same provisions 2 through 4 for binary distributions.
! 33: *
! 34: * This software is provided "as is" without express or implied warranty
! 35: * to the extent permitted by applicable law.
! 36: ]*/
! 37:
! 38: /*
! 39: * The terminal 'table' is built into the source code; it is not
! 40: * available separately. This file is needed only for building
! 41: * the documentation for gnuplot 3.6 (or higher) using the new
! 42: * including mechanismn.
! 43: */
! 44:
! 45: #ifdef TERM_REGISTER
! 46: register_term(table)
! 47: #endif
! 48:
! 49: #ifdef TERM_HELP
! 50: START_HELP(table)
! 51: "1 table",
! 52: "?commands set terminal table",
! 53: "?set terminal table",
! 54: "?set term table",
! 55: "?terminal table",
! 56: "?term table",
! 57: "?table",
! 58: " Instead of producing a graph, the `table` terminal prints out the points on",
! 59: " which a graph would be based, i.e., the results of processing the `plot` or",
! 60: " `splot` command, in a multicolumn ASCII table of X Y {Z} R values. The",
! 61: " character R takes on one of three values: \"i\" if the point is in the active",
! 62: " range, \"o\" if it is out-of-range, or \"u\" if it is undefined. The data",
! 63: " format is determined by the format of the axis labels (see `set format`).",
! 64: "",
! 65: " For those times when you want the numbers, you can display them on the",
! 66: " screen or save them to a file. This can be useful if you want to generate",
! 67: " contours and then save them for further use, perhaps for plotting with",
! 68: " `plot`; see `set contour` for an example. The same method can be used to",
! 69: " save interpolated data (see `set samples` and `set dgrid3d`)."
! 70: END_HELP(table)
! 71: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>