PLplot  5.15.0
plf2ops.c
Go to the documentation of this file.
1 // Predefined 2-D data access functions.
2 //
3 // Copyright (C) 2010 David H. E. MacMahon
4 //
5 // This file is part of PLplot.
6 //
7 // PLplot is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU Library General Public License as published
9 // by the Free Software Foundation; either version 2 of the License, or
10 // (at your option) any later version.
11 //
12 // PLplot is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU Library General Public License
18 // along with PLplot; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 //
21 
22 #include "plplotP.h"
23 
24 //
25 // 2-D data access functions for data stored in (PLFLT **), such as the C
26 // variable z declared as...
27 //
28 // PLFLT z[nx][ny];
29 //
30 // These functions are named plf2OP1, where OP is "get", "set", etc. The
31 // plf2ops_t instance named "plf2ops1" is also defined below.
32 //
33 
34 static PLFLT
36 {
37  return ( (PLFLT **) p )[ix][iy];
38 }
39 
40 static PLFLT
42 {
43  return ( (PLFLT **) p )[ix][iy];
44 }
45 
46 static PLFLT
48 {
49  return ( ( (PLFLT **) p )[ix][iy] = z );
50 }
51 
52 static PLFLT
54 {
55  return ( ( (PLFLT **) p )[ix][iy] += z );
56 }
57 
58 static PLFLT
60 {
61  return ( ( (PLFLT **) p )[ix][iy] -= z );
62 }
63 
64 static PLFLT
66 {
67  return ( ( (PLFLT **) p )[ix][iy] *= z );
68 }
69 
70 static PLFLT
72 {
73  return ( ( (PLFLT **) p )[ix][iy] /= z );
74 }
75 
76 static PLINT
78 {
79  return isnan( ( (PLFLT **) p )[ix][iy] );
80 }
81 
82 static void
83 plf2ops_c_minmax( PLPointer p, PLINT nx, PLINT ny, PLFLT *zmin, PLFLT *zmax )
84 {
85  int i, j;
86  PLFLT min, max;
87  PLFLT **z = (PLFLT **) p;
88 
89  if ( !isfinite( z[0][0] ) )
90  {
91  max = -HUGE_VAL;
92  min = HUGE_VAL;
93  }
94  else
95  min = max = z[0][0];
96 
97  for ( i = 0; i < nx; i++ )
98  {
99  for ( j = 0; j < ny; j++ )
100  {
101  if ( !isfinite( z[i][j] ) )
102  continue;
103  if ( z[i][j] < min )
104  min = z[i][j];
105  if ( z[i][j] > max )
106  max = z[i][j];
107  }
108  }
109  *zmin = min;
110  *zmax = max;
111 }
112 
123 };
124 
125 PLF2OPS
127 {
128  return &s_plf2ops_c;
129 }
130 
131 //
132 // 2-D data access functions for data stored in (PLfGrid2 *), with the
133 // PLfGrid2's "f" field treated as type (PLFLT **).
134 //
135 
136 static PLFLT
138 {
139  return ( ( (PLfGrid2 *) p )->f )[ix][iy];
140 }
141 
142 static PLFLT
144 {
145  return ( ( (PLfGrid2 *) p )->f )[ix][iy];
146 }
147 
148 static PLFLT
150 {
151  return ( ( ( (PLfGrid2 *) p )->f )[ix][iy] = z );
152 }
153 
154 static PLFLT
156 {
157  return ( ( ( (PLfGrid2 *) p )->f )[ix][iy] += z );
158 }
159 
160 static PLFLT
162 {
163  return ( ( ( (PLfGrid2 *) p )->f )[ix][iy] -= z );
164 }
165 
166 static PLFLT
168 {
169  return ( ( ( (PLfGrid2 *) p )->f )[ix][iy] *= z );
170 }
171 
172 static PLFLT
174 {
175  return ( ( ( (PLfGrid2 *) p )->f )[ix][iy] /= z );
176 }
177 
178 static PLINT
180 {
181  return isnan( ( ( (PLfGrid2 *) p )->f )[ix][iy] );
182 }
183 
184 static void
186 {
187  int i, j;
188  PLFLT min, max;
189  PLfGrid2 *g = (PLfGrid2 *) p;
190  PLFLT **z = g->f;
191 
192  // Ignore passed in parameters
193  nx = g->nx;
194  ny = g->ny;
195 
196  if ( !isfinite( z[0][0] ) )
197  {
198  max = -HUGE_VAL;
199  min = HUGE_VAL;
200  }
201  else
202  min = max = z[0][0];
203 
204  for ( i = 0; i < nx; i++ )
205  {
206  for ( j = 0; j < ny; j++ )
207  {
208  if ( !isfinite( z[i][j] ) )
209  continue;
210  if ( z[i][j] < min )
211  min = z[i][j];
212  if ( z[i][j] > max )
213  max = z[i][j];
214  }
215  }
216  *zmin = min;
217  *zmax = max;
218 }
219 
230 };
231 
232 PLF2OPS
234 {
235  return &s_plf2ops_grid_c;
236 }
237 
238 //
239 // 2-D data access functions for data stored in (PLfGrid2 *), with the
240 // PLfGrid2's "f" field treated as type (PLFLT *) pointing to 2-D data stored
241 // in row-major order. In the context of plotting, it might be easier to think
242 // of it as "X-major" order. In this ordering, values for a single X index are
243 // stored in consecutive memory locations.
244 //
245 
246 static PLFLT
248 {
249  PLfGrid2 *g = (PLfGrid2 *) p;
250  return ( (PLFLT *) g->f )[ix * g->ny + iy];
251 }
252 
253 static PLFLT
255 {
256  PLfGrid2 *g = (PLfGrid2 *) p;
257  return ( (PLFLT *) g->f )[ix * g->ny + iy];
258 }
259 
260 static PLFLT
262 {
263  PLfGrid2 *g = (PLfGrid2 *) p;
264  return ( ( (PLFLT *) g->f )[ix * g->ny + iy] = z );
265 }
266 
267 static PLFLT
269 {
270  PLfGrid2 *g = (PLfGrid2 *) p;
271  return ( ( (PLFLT *) g->f )[ix * g->ny + iy] += z );
272 }
273 
274 static PLFLT
276 {
277  PLfGrid2 *g = (PLfGrid2 *) p;
278  return ( ( (PLFLT *) g->f )[ix * g->ny + iy] -= z );
279 }
280 
281 static PLFLT
283 {
284  PLfGrid2 *g = (PLfGrid2 *) p;
285  return ( ( (PLFLT *) g->f )[ix * g->ny + iy] *= z );
286 }
287 
288 static PLFLT
290 {
291  PLfGrid2 *g = (PLfGrid2 *) p;
292  return ( ( (PLFLT *) g->f )[ix * g->ny + iy] /= z );
293 }
294 
295 static PLINT
297 {
298  PLfGrid2 *g = (PLfGrid2 *) p;
299  return isnan( ( (PLFLT *) g->f )[ix * g->ny + iy] );
300 }
301 
302 static void
304 {
305  int i;
306  PLFLT min, max;
307  PLfGrid2 *g = (PLfGrid2 *) p;
308  PLFLT *z = (PLFLT *) ( (PLFLT *) g->f );
309 
310  // Ignore passed in parameters
311  nx = g->nx;
312  ny = g->ny;
313 
314  if ( !isfinite( z[0] ) )
315  {
316  max = -HUGE_VAL;
317  min = HUGE_VAL;
318  }
319  else
320  min = max = z[0];
321 
322  for ( i = 0; i < nx * ny; i++ )
323  {
324  if ( !isfinite( z[i] ) )
325  continue;
326  if ( z[i] < min )
327  min = z[i];
328  if ( z[i] > max )
329  max = z[i];
330  }
331  *zmin = min;
332  *zmax = max;
333 }
334 
345 };
346 
347 PLF2OPS
349 {
350  return &s_plf2ops_grid_row_major;
351 }
352 
353 //
354 // 2-D data access functions for data stored in (PLfGrid2 *), with the
355 // PLfGrid2's "f" field treated as type (PLFLT *) pointing to 2-D data stored
356 // in column-major order. In the context of plotting, it might be easier to
357 // think of it as "Y-major" order. In this ordering, values for a single Y
358 // index are stored in consecutive memory locations.
359 //
360 
361 static PLFLT
363 {
364  PLfGrid2 *g = (PLfGrid2 *) p;
365  return ( (PLFLT *) g->f )[ix + g->nx * iy];
366 }
367 
368 static PLFLT
370 {
371  PLfGrid2 *g = (PLfGrid2 *) p;
372  return ( (PLFLT *) g->f )[ix + g->nx * iy];
373 }
374 
375 static PLFLT
377 {
378  PLfGrid2 *g = (PLfGrid2 *) p;
379  return ( ( (PLFLT *) g->f )[ix + g->nx * iy] = z );
380 }
381 
382 static PLFLT
384 {
385  PLfGrid2 *g = (PLfGrid2 *) p;
386  return ( ( (PLFLT *) g->f )[ix + g->nx * iy] += z );
387 }
388 
389 static PLFLT
391 {
392  PLfGrid2 *g = (PLfGrid2 *) p;
393  return ( ( (PLFLT *) g->f )[ix + g->nx * iy] -= z );
394 }
395 
396 static PLFLT
398 {
399  PLfGrid2 *g = (PLfGrid2 *) p;
400  return ( ( (PLFLT *) g->f )[ix + g->nx * iy] *= z );
401 }
402 
403 static PLFLT
405 {
406  PLfGrid2 *g = (PLfGrid2 *) p;
407  return ( ( (PLFLT *) g->f )[ix + g->nx * iy] /= z );
408 }
409 
410 static PLINT
412 {
413  PLfGrid2 *g = (PLfGrid2 *) p;
414  return isnan( ( (PLFLT *) g->f )[ix + g->nx * iy] );
415 }
416 
427 };
428 
429 PLF2OPS
431 {
432  return &s_plf2ops_grid_col_major;
433 }
static PLFLT plf2ops_grid_col_major_f2eval(PLINT ix, PLINT iy, PLPointer p)
Definition: plf2ops.c:369
static void plf2ops_grid_xxx_major_minmax(PLPointer p, PLINT nx, PLINT ny, PLFLT *zmin, PLFLT *zmax)
Definition: plf2ops.c:303
int min(int a, int b)
static PLFLT plf2ops_grid_c_mul(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:167
static PLFLT plf2ops_grid_c_div(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:173
static PLFLT plf2ops_c_sub(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:59
#define isnan(x)
Definition: plplotP.h:262
plf2ops_t s_plf2ops_grid_col_major
Definition: plf2ops.c:417
#define HUGE_VAL
Definition: plplotP.h:274
static PLFLT plf2ops_grid_c_sub(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:161
static void plf2ops_c_minmax(PLPointer p, PLINT nx, PLINT ny, PLFLT *zmin, PLFLT *zmax)
Definition: plf2ops.c:83
static PLFLT plf2ops_grid_c_add(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:155
static PLFLT plf2ops_grid_row_major_add(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:268
static PLFLT plf2ops_grid_col_major_sub(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:390
void * PLPointer
Definition: plplot.h:209
static PLFLT plf2ops_c_add(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:53
static PLINT plf2ops_grid_c_isnan(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:179
static PLFLT plf2ops_grid_row_major_mul(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:282
static PLFLT plf2ops_grid_col_major_mul(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:397
static plf2ops_t s_plf2ops_grid_c
Definition: plf2ops.c:220
static PLFLT plf2ops_grid_col_major_div(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:404
int PLINT
Definition: plplot.h:181
PLFLT_NC_MATRIX f
Definition: plplot.h:491
static plf2ops_t s_plf2ops_grid_row_major
Definition: plf2ops.c:335
static PLINT plf2ops_grid_row_major_isnan(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:296
static PLFLT plf2ops_c_f2eval(PLINT ix, PLINT iy, PLPointer p)
Definition: plf2ops.c:41
static PLFLT plf2ops_grid_col_major_get(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:362
static PLINT plf2ops_c_isnan(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:77
static PLFLT plf2ops_grid_col_major_add(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:383
PLINT ny
Definition: plplot.h:492
static PLFLT plf2ops_grid_row_major_sub(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:275
PLF2OPS plf2ops_grid_row_major()
Definition: plf2ops.c:348
static PLFLT plf2ops_grid_col_major_set(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:376
static PLINT plf2ops_grid_col_major_isnan(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:411
PLINT nx
Definition: plplot.h:492
static PLFLT plf2ops_grid_c_set(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:149
static PLFLT plf2ops_grid_c_get(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:137
static PLFLT plf2ops_grid_c_f2eval(PLINT ix, PLINT iy, PLPointer p)
Definition: plf2ops.c:143
#define isfinite(x)
Definition: plplotP.h:268
int max(int a, int b)
static PLFLT plf2ops_c_get(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:35
static PLFLT plf2ops_grid_row_major_f2eval(PLINT ix, PLINT iy, PLPointer p)
Definition: plf2ops.c:254
float PLFLT
Definition: plplot.h:163
static plf2ops_t s_plf2ops_c
Definition: plf2ops.c:113
PLF2OPS plf2ops_c()
Definition: plf2ops.c:126
static void plf2ops_grid_c_minmax(PLPointer p, PLINT nx, PLINT ny, PLFLT *zmin, PLFLT *zmax)
Definition: plf2ops.c:185
static PLFLT plf2ops_grid_row_major_div(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:289
static PLFLT plf2ops_grid_row_major_get(PLPointer p, PLINT ix, PLINT iy)
Definition: plf2ops.c:247
PLF2OPS plf2ops_grid_c()
Definition: plf2ops.c:233
static PLFLT plf2ops_c_set(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:47
static PLFLT plf2ops_c_mul(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:65
PLF2OPS plf2ops_grid_col_major()
Definition: plf2ops.c:430
static PLFLT plf2ops_grid_row_major_set(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:261
static PLFLT plf2ops_c_div(PLPointer p, PLINT ix, PLINT iy, PLFLT z)
Definition: plf2ops.c:71