1CPMVRW(3NCARG) NCAR GRAPHICS CPMVRW(3NCARG)
2
3
4
6 CPMVRW - Moves the contents of an old real workspace to a new one.
7
9 CALL CPMVRW (RWKO, RWKN, LWKN)
10
12 #include <ncarg/ncargC.h>
13
14 void c_cpback (float *iwko, float *iwkn, int *lwkn)
15
17 The arguments define the old and new real workspaces.
18
19 IWKO (an input array of type REAL, dimensioned as specified in
20 the last call to CPRECT, CPSPS1, CPSPS2, or CPMVIW) is the
21 old real workspace array.
22
23 IWKN (an output array of type REAL, dimensioned LWKN) is the new
24 real workspace array.
25
26 LWKN (an input expression of type INTEGER) specifies the length
27 of RWKN.
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions.
32
34 When, in the execution of a CONPACK routine, the amount of space left
35 in the real workspace array is found to be insufficient, if the
36 internal parameter 'WSO' has the value 3, the error-handling routine
37 SETER is called with an appropriate error message. If, in addition,
38 the user has turned recovery mode on, execution continues and,
39 eventually, control is returned to the user. At that point, the user
40 should detect the fact that an error has occurred. If he/she chooses
41 to try to recover from the error, CPMVRW may be of use: it may be
42 called to move everything from the current real workspace to a new (and
43 presumably bigger) one, after which it may be possible to resume
44 execution.
45
47 None, at present.
48
50 To use CPMVRW or c_cpmvrw, load the NCAR Graphics libraries ncarg,
51 ncarg_gks, and ncarg_c, preferably in that order.
52
54 See the conpack man page for a description of all Conpack error
55 messages and/or informational messages.
56
58 Online: conpack, cpback, cpchcf, cpchcl, cpchhl, cpchil, cpchll,
59 cpcica, cpclam, cpcldm, cpcldr, cpcltr, cpcnrc, cpdrpl, cpezct, cpgetc,
60 cpgeti, cpgetr, cplbam, cplbdr, cpmpxy, cpmviw, cppkcl, cppklb, cprect,
61 cprset, cpscae, cpsetc, cpseti, cpsetr, cpsps1, cpsps2, ncarg_cbind
62
63 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
64
66 Copyright (C) 1987-2009
67 University Corporation for Atmospheric Research
68
69 The use of this Software is governed by a License Agreement.
70
71
72
73UNIX March 1993 CPMVRW(3NCARG)