1CPEZCT(3NCARG) NCAR GRAPHICS CPEZCT(3NCARG)
2
3
4
6 CPEZCT - Draws black and white contours with a single call. Simulates
7 the behavior of the old subroutine EZCNTR in Conrec_family; it has the
8 same arguments and will produce similar output.
9
11 CALL CPEZCT (ZDAT,MZDT,NZDT)
12
14 #include <ncarg/ncargC.h>
15
16 void c_cpezct (float *zdat, int mzdt, int nzdt)
17
19 ZDAT (REAL array, dimensioned MZDT x NZDT, input) is the array
20 containing the data to be contoured.
21
22 MZDT (INTEGER, input) is the first dimension of the FORTRAN
23 array ZDAT and of the array of data stored in it.
24
25 NZDT (INTEGER, input) is the second dimension of the FORTRAN
26 array ZDAT and of the array of data stored in it.
27
29 The C-binding argument descriptions are the same as the FORTRAN
30 argument descriptions with the following exceptions:
31
32 z(nzdt,mzdt)
33 An n by m data array holding values to be contoured.
34
35 mzdt The second dimension of z.
36
37 nzdt The first dimension of z.
38
40 The effect of calling CPEZCT will be exactly the same as if you had
41 executed the statements:
42
43 CALL CPCNRC (ZDAT,MZDT,MZDT,NZDT,0.,0.,0.,0,0,-682)
44 CALL FRAME
45
46 See the man page for CPCNRC.
47
49 Use the ncargex command to see the following relevant examples:
50 ccpezct, cpex09, tconpa.
51
53 To use CPEZCT or c_cpezct, load the NCAR Graphics libraries ncarg,
54 ncarg_gks, and ncarg_c, preferably in that order.
55
57 Online: conpack, cpback, cpchcf, cpchcl, cpchhl, cpchil, cpchll,
58 cpcica, cpclam, cpcldm, cpcldr, cpcltr, cpcnrc, cpdrpl, cpgetc, cpgeti,
59 cpgetr, cplbam, cplbdr, cpmpxy, cpmviw, cpmvrw, cppkcl, cppklb, cprect,
60 cprset, cpscae, cpsetc, cpseti, cpsetr, cpsps1, cpsps2, ncarg_cbind
61
62 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
63
65 Copyright (C) 1987-2007
66 University Corporation for Atmospheric Research
67
68 This documentation is free software; you can redistribute it and/or
69 modify it under the terms of the GNU General Public License as
70 published by the Free Software Foundation; either version 2 of the
71 License, or (at your option) any later version.
72
73 This software is distributed in the hope that it will be useful, but
74 WITHOUT ANY WARRANTY; without even the implied warranty of
75 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
76 General Public License for more details.
77
78 You should have received a copy of the GNU General Public License along
79 with this software; if not, write to the Free Software Foundation,
80 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
81
82
83
84
85UNIX March 1993 CPEZCT(3NCARG)