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-2009
66 University Corporation for Atmospheric Research
67
68 The use of this Software is governed by a License Agreement.
69
70
71
72UNIX March 1993 CPEZCT(3NCARG)