1AGSETF(3NCARG) NCAR GRAPHICS AGSETF(3NCARG)
2
3
4
6 AGSETF - Allows a user program to store a real number as the value of a
7 single parameter.
8
10 CALL AGSETF (TPGN,FUSR)
11
13 #include <ncarg/ncargC.h>
14
15 void c_agsetf (char *tpgn, float fusr)
16
18 TPGN (an input expression of type CHARACTER) is an parameter
19 identifier, as described in AGSETP man page. If a group of
20 more than one parameter is specified, only the first
21 element of that group will be affected by the call.
22
23 FUSR (an input expression of type REAL) is the value to be given
24 to the parameter specified by TPGN.
25
27 The C-binding argument descriptions are the same as the FORTRAN
28 argument descriptions.
29
31 This routine allows you to set the current value of Autograph
32 parameters. For a complete list of parameters available in this
33 utility, see the autograph_params man page.
34
36 Use the ncargex command to see the following relevant examples: agex05,
37 agex07, agex08, agex10, agex13, fagaxmax, fagcudsh, fagovrvw.
38
40 To use AGSETF or c_agsetf, load the NCAR Graphics libraries ncarg,
41 ncarg_gks, and ncarg_c, preferably in that order. To get smoother
42 curves, drawn using spline interpolation, also load libdashsmth.o. Or,
43 you can use the ncargf77 command to compile your program and load the
44 above libraries, then, to get smoother curves, use the -dashsmth
45 option.
46
48 Online: autograph, autograph_params, agback, agbnch, agchax, agchcu,
49 agchil, agchnl, agcurv, agdshn, aggetc, aggetr, aggeti, aggetp, aggetr,
50 agpwrt, agrstr, agsave, agsetc, agsetf, agseti, agsetp, agstup, agutol,
51 anotat, displa, ezmxy, ezmy, ezxy, ezy
52
54 Copyright (C) 1987-2007
55 University Corporation for Atmospheric Research
56
57 This documentation is free software; you can redistribute it and/or
58 modify it under the terms of the GNU General Public License as
59 published by the Free Software Foundation; either version 2 of the
60 License, or (at your option) any later version.
61
62 This software is distributed in the hope that it will be useful, but
63 WITHOUT ANY WARRANTY; without even the implied warranty of
64 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
65 General Public License for more details.
66
67 You should have received a copy of the GNU General Public License along
68 with this software; if not, write to the Free Software Foundation,
69 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
70
71
72
73UNIX March 1993 AGSETF(3NCARG)