1STSETR(3NCARG) NCAR GRAPHICS STSETR(3NCARG)
2
3
4
6 STSETR - Sets the value of an internal parameter of type REAL.
7
9 CALL STSETR (CNM,RVL)
10
12 #include <ncarg/ncargC.h>
13
14 void c_stsetr(char *cnm, float rvl)
15
17 CNM (CHARACTER, input) is the name of a parameter to be given a
18 real value. Only the first three characters of CNM are
19 examined. The three characters may either be entirely upper
20 or entirely lower case; mixed case is not recognized. It
21 is recommended that the rest of the character string be
22 used to improve the readability of the code. For example,
23 instead of ´DFM´, use ´DFM - Differential Magnitude´.
24
25 RVL (REAL, input) is an expression, the value of which is to be
26 given to the parameter specified by CNM.
27
29 The C-binding argument descriptions are the same as the FORTRAN
30 argument descriptions.
31
33 This routine allows you to set the current value of Streamlines
34 parameters of type REAL. For a complete list of parameters available in
35 this utility, see the streamlines_params man page.
36
38 Use the ncargex command to see the following relevant examples: ffex00,
39 ffex03, ffex04, fstream, stex01, stex02, stex03.
40
42 To use STSETR or c_stsetr, load the NCAR Graphics libraries ncarg,
43 ncarg_gks, and ncarg_c, preferably in that order.
44
46 See the streamlines man page for a description of all Streamlines error
47 messages and/or informational messages.
48
50 Online: stgetc, stgeti, stgetr, stinit, stream, streamlines,
51 streamlines_params, strset, stsetc, stseti, stuixy, stumsl, stumta,
52 stumxy, ncarg_cbind.
53
54 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
55
57 Copyright (C) 1987-2007
58 University Corporation for Atmospheric Research
59
60 This documentation is free software; you can redistribute it and/or
61 modify it under the terms of the GNU General Public License as
62 published by the Free Software Foundation; either version 2 of the
63 License, or (at your option) any later version.
64
65 This software is distributed in the hope that it will be useful, but
66 WITHOUT ANY WARRANTY; without even the implied warranty of
67 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
68 General Public License for more details.
69
70 You should have received a copy of the GNU General Public License along
71 with this software; if not, write to the Free Software Foundation,
72 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
73
74
75
76UNIX April 1993 STSETR(3NCARG)