-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgrdmath.c
7221 lines (6425 loc) · 330 KB
/
grdmath.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* Brief synopsis: grdmath is a reverse polish calculator that operates on grid files
* (and constants) and perform basic mathematical operations
* on them like add, multiply, etc.
* Some operators only work on one operand (e.g., log, exp)
*
* Author: Paul Wessel
* Date: 1-JAN-2010
* Version: 6 API
*
* Note on KEYS: =G} is special and says the = option will write an output grid (repeatable).
*/
/* Notes: To add a new operator:
* 1) Just add one more entry at the end of the array of operator names at top of GMT_grdmath function.
* 2) Add one more entry at the end with the specifics in init_operators in grdmath_init function.
* 3) Code up the operator function grd_XXXXX ()
* 4) Add message to the usage function
* 5) Update value of #define GRDMATH_N_OPERATORS
* 6) Add to the rst documentation
*/
#include "gmt_dev.h"
#include "longopt/grdmath_inc.h"
#define THIS_MODULE_CLASSIC_NAME "grdmath"
#define THIS_MODULE_MODERN_NAME "grdmath"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Reverse Polish Notation (RPN) calculator for grids (element by element)"
#define THIS_MODULE_KEYS "<G(,=G}"
#define THIS_MODULE_NEEDS "r"
#define THIS_MODULE_OPTIONS "-:RVabdfghinr" GMT_OPT("F") GMT_ADD_x_OPT
/* Some local macros to simplify coding */
/*! Loop over all nodes including the pad */
#define grdmath_row_padloop(C,G,row,ij) for (row = 0, ij = 0; row < (openmp_int)G->header->my; row++)
#define grdmath_col_padloop(C,G,col,ij) for (col = 0; col < (openmp_int)G->header->mx; col++, ij++)
#define grdmath_grd_padloop(C,G,row,col,ij) grdmath_row_padloop(C,G,row,ij) grdmath_col_padloop(C,G,col,ij)
/*! Just a loop over columns */
#define grdmath_col_padloop2(C,G,col) for (col = 0; col < (openmp_int)G->header->mx; col++)
#define GRDMATH_ARG_IS_OPERATOR 0
#define GRDMATH_ARG_IS_FILE -1
#define GRDMATH_ARG_IS_NUMBER -2
#define GRDMATH_ARG_IS_PI -3
#define GRDMATH_ARG_IS_E -4
#define GRDMATH_ARG_IS_F_EPS -5
#define GRDMATH_ARG_IS_EULER -6
#define GRDMATH_ARG_IS_PHI -7
#define GRDMATH_ARG_IS_XMIN -8
#define GRDMATH_ARG_IS_XMAX -9
#define GRDMATH_ARG_IS_XRANGE -10
#define GRDMATH_ARG_IS_XINC -11
#define GRDMATH_ARG_IS_NX -12
#define GRDMATH_ARG_IS_YMIN -13
#define GRDMATH_ARG_IS_YMAX -14
#define GRDMATH_ARG_IS_YRANGE -15
#define GRDMATH_ARG_IS_YINC -16
#define GRDMATH_ARG_IS_NY -17
#define GRDMATH_ARG_IS_X_MATRIX -18
#define GRDMATH_ARG_IS_x_MATRIX -19
#define GRDMATH_ARG_IS_Y_MATRIX -20
#define GRDMATH_ARG_IS_y_MATRIX -21
#define GRDMATH_ARG_IS_XCOL_MATRIX -22
#define GRDMATH_ARG_IS_YROW_MATRIX -23
#define GRDMATH_ARG_IS_NODE_MATRIX -24
#define GRDMATH_ARG_IS_NODEP_MATRIX -25
#define GRDMATH_ARG_IS_ASCIIFILE -26
#define GRDMATH_ARG_IS_SAVE -27
#define GRDMATH_ARG_IS_STORE -50
#define GRDMATH_ARG_IS_RECALL -51
#define GRDMATH_ARG_IS_CLEAR -52
#define GRDMATH_ARG_IS_BAD -99
#define GRDMATH_STACK_SIZE 100
#define GRDMATH_STORE_SIZE 100
#define GRDMATH_STORE_CMD "STO@"
#define GRDMATH_RECALL_CMD "RCL@"
#define GRDMATH_CLEAR_CMD "CLR@"
#define FLOAT_BIT_MASK (~(127U << 25U)) /* This will be 00000001 11111111 11111111 11111111 and sets to 0 anything larger than 2^24 which is max integer in float */
#define GMT_OPT_OUTFILE2 '=' /* Unlike GMT_OPT_OUTFILE this one has no restriction of just one output file */
#ifdef DOUBLE_PRECISION_GRID
#define fabsf(x) fabs(x)
#endif
struct GRDMATH_CTRL { /* All control options for this program (except common args) */
/* active is true if the option has been activated */
struct GRDMATH_Out { /* = <filename> */
bool active;
} Out;
struct GRDMATH_A { /* -A<min_area>[/<min_level>/<max_level>][+ag|i|s][+r|l][+p<percent>] */
bool active;
struct GMT_SHORE_SELECT info;
} A;
struct GRDMATH_C { /* -C[<cpt>] */
bool active;
char *cpt;
} C;
struct GRDMATH_D { /* -D<resolution>[+f] */
bool active;
bool force; /* if true, select next highest level if current set is not available */
char set; /* One of f, h, i, l, c, or auto */
} D;
struct GRDMATH_I { /* -I (for checking only) */
bool active;
} I;
struct GRDMATH_M { /* -M */
bool active;
} M;
struct GRDMATH_N { /* -N */
bool active;
} N;
};
struct GRDMATH_INFO {
int error;
uint64_t nm;
size_t size;
char *ASCII_file;
char gshhg_res; /* If -D is set */
bool convert; /* Reflects -M */
double *d_grd_x, *d_grd_y;
double *d_grd_xn, *d_grd_yn;
gmt_grdfloat *f_grd_x, *f_grd_y;
gmt_grdfloat *f_grd_xn, *f_grd_yn;
double *dx, dy; /* In flat-Earth m if -M is set */
struct GMT_GRID *G;
struct GMT_SHORE_SELECT *A; /* If -A is processed */
};
struct GRDMATH_STACK {
struct GMT_GRID *G; /* The grid */
bool constant; /* true if a constant (see factor) and S == NULL */
double factor; /* The value if constant is true */
};
struct GRDMATH_STORE {
char *label; /* Name of this stored memory */
struct GRDMATH_STACK stored;
};
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct GRDMATH_CTRL *C = gmt_M_memory (GMT, NULL, 1, struct GRDMATH_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->A.info.high = GSHHS_MAX_LEVEL; /* Include all GSHHS levels (if LDISTG is used) */
C->D.set = 'l'; /* Low-resolution coastline data */
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct GRDMATH_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s [%s] [%s] [-D<resolution>[+f]] [%s] [-M] [-N] [-S] [%s] [%s] [%s] [%s] [%s] [%s] [%s] "
"[%s] [%s] [%s] [%s]%s[%s] A B op C op D op ... = %s\n", name, GMT_Rgeo_OPT, GMT_A_OPT, GMT_I_OPT, GMT_V_OPT, GMT_a_OPT, GMT_bi_OPT, GMT_di_OPT,
GMT_e_OPT, GMT_f_OPT, GMT_g_OPT, GMT_h_OPT, GMT_i_OPT, GMT_n_OPT, GMT_r_OPT, GMT_x_OPT, GMT_PAR_OPT, GMT_OUTGRID);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
gmt_outgrid_syntax (API, '=', "Writes the current top of the stack to the named file and pops it off the stack. "
"Can be used more than once");
GMT_Usage (API, 1, "\n<operands>");
GMT_Usage (API, -2, "A, B, etc. are grid files, constants, or symbols (see below). "
"The stack can hold up to %d entries (given enough memory).", GRDMATH_STACK_SIZE);
GMT_Usage (API, 1, "\n<operators>");
GMT_Usage (API, -2, "Trigonometric operators expect radians unless noted otherwise. "
"The operators and number of input and output arguments are:\n");
/* Do these verbatim with no wrapping via GMT_Usage since cannot align well otherwise */
GMT_Message (API, GMT_TIME_NONE,
" Name #args Returns\n"
" -----------------------\n");
GMT_Message (API, GMT_TIME_NONE, " ABS 1 1 "); GMT_Usage (API, -21, "abs (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOS 1 1 "); GMT_Usage (API, -21, "acos (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOSD 1 1 "); GMT_Usage (API, -21, "acosd (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOSH 1 1 "); GMT_Usage (API, -21, "acosh (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOT 1 1 "); GMT_Usage (API, -21, "acot (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOTD 1 1 "); GMT_Usage (API, -21, "acotd (A)");
GMT_Message (API, GMT_TIME_NONE, " ACOTH 1 1 "); GMT_Usage (API, -21, "acoth (A)");
GMT_Message (API, GMT_TIME_NONE, " ACSC 1 1 "); GMT_Usage (API, -21, "acsc (A)");
GMT_Message (API, GMT_TIME_NONE, " ACSCD 1 1 "); GMT_Usage (API, -21, "acscd (A)");
GMT_Message (API, GMT_TIME_NONE, " ACSCH 1 1 "); GMT_Usage (API, -21, "acsch (A)");
GMT_Message (API, GMT_TIME_NONE, " ADD 2 1 "); GMT_Usage (API, -21, "A + B");
GMT_Message (API, GMT_TIME_NONE, " AND 2 1 "); GMT_Usage (API, -21, "B if A == NaN, else A");
GMT_Message (API, GMT_TIME_NONE, " ARC 2 1 "); GMT_Usage (API, -21, "arc(A, B) = pi - |pi - |a-b|| for A, B in radians");
GMT_Message (API, GMT_TIME_NONE, " AREA 0 1 "); GMT_Usage (API, -21, "Area of each gridnode cell (spherical calculation in km^2 if geographic)");
GMT_Message (API, GMT_TIME_NONE, " ASEC 1 1 "); GMT_Usage (API, -21, "asec (A)");
GMT_Message (API, GMT_TIME_NONE, " ASECD 1 1 "); GMT_Usage (API, -21, "asecd (A)");
GMT_Message (API, GMT_TIME_NONE, " ASECH 1 1 "); GMT_Usage (API, -21, "asech (A)");
GMT_Message (API, GMT_TIME_NONE, " ASIN 1 1 "); GMT_Usage (API, -21, "asin (A)");
GMT_Message (API, GMT_TIME_NONE, " ASIND 1 1 "); GMT_Usage (API, -21, "asind (A)");
GMT_Message (API, GMT_TIME_NONE, " ASINH 1 1 "); GMT_Usage (API, -21, "asinh (A)");
GMT_Message (API, GMT_TIME_NONE, " ATAN 1 1 "); GMT_Usage (API, -21, "atan (A)");
GMT_Message (API, GMT_TIME_NONE, " ATAND 1 1 "); GMT_Usage (API, -21, "atand (A)");
GMT_Message (API, GMT_TIME_NONE, " ATAN2 2 1 "); GMT_Usage (API, -21, "atan2 (A, B)");
GMT_Message (API, GMT_TIME_NONE, " ATAN2D 2 1 "); GMT_Usage (API, -21, "atan2d (A, B)");
GMT_Message (API, GMT_TIME_NONE, " ATANH 1 1 "); GMT_Usage (API, -21, "atanh (A)");
GMT_Message (API, GMT_TIME_NONE, " BCDF 3 1 "); GMT_Usage (API, -21, "Binomial cumulative distribution function for p = A, n = B and x = C");
GMT_Message (API, GMT_TIME_NONE, " BPDF 3 1 "); GMT_Usage (API, -21, "Binomial probability density function for p = A, n = B and x = C");
GMT_Message (API, GMT_TIME_NONE, " BEI 1 1 "); GMT_Usage (API, -21, "Kelvin function bei (A)");
GMT_Message (API, GMT_TIME_NONE, " BER 1 1 "); GMT_Usage (API, -21, "Kelvin function ber (A)");
GMT_Message (API, GMT_TIME_NONE, " BITAND 2 1 "); GMT_Usage (API, -21, "A & B (bitwise AND operator)");
GMT_Message (API, GMT_TIME_NONE, " BITLEFT 2 1 "); GMT_Usage (API, -21, "A << B (bitwise left-shift operator)");
GMT_Message (API, GMT_TIME_NONE, " BITNOT 1 1 "); GMT_Usage (API, -21, "~A (bitwise NOT operator, i.e., return two's complement)");
GMT_Message (API, GMT_TIME_NONE, " BITOR 2 1 "); GMT_Usage (API, -21, "A | B (bitwise OR operator)");
GMT_Message (API, GMT_TIME_NONE, " BITRIGHT 2 1 "); GMT_Usage (API, -21, "A >> B (bitwise right-shift operator)");
GMT_Message (API, GMT_TIME_NONE, " BITTEST 2 1 "); GMT_Usage (API, -21, "1 if bit B of A is set, else 0 (bitwise TEST operator)");
GMT_Message (API, GMT_TIME_NONE, " BITXOR 2 1 "); GMT_Usage (API, -21, "A ^ B (bitwise XOR operator)");
GMT_Message (API, GMT_TIME_NONE, " BLEND 3 1 "); GMT_Usage (API, -21, "Blend A and B using weights in C (0-1 range) as A*C + B*(1-C)");
GMT_Message (API, GMT_TIME_NONE, " CAZ 2 1 "); GMT_Usage (API, -21, "Cartesian azimuth from grid nodes to stack x,y");
GMT_Message (API, GMT_TIME_NONE, " CBAZ 2 1 "); GMT_Usage (API, -21, "Cartesian back-azimuth from grid nodes to stack x,y");
GMT_Message (API, GMT_TIME_NONE, " CDIST 2 1 "); GMT_Usage (API, -21, "Cartesian distance between grid nodes and stack x,y");
GMT_Message (API, GMT_TIME_NONE, " CDIST2 2 1 "); GMT_Usage (API, -21, "As CDIST but only to nodes that are != 0");
GMT_Message (API, GMT_TIME_NONE, " CEIL 1 1 "); GMT_Usage (API, -21, "ceil (A) (smallest integer >= A)");
GMT_Message (API, GMT_TIME_NONE, " CHI2CRIT 2 1 "); GMT_Usage (API, -21, "Chi-squared distribution critical value for alpha = A and nu = B");
GMT_Message (API, GMT_TIME_NONE, " CHI2CDF 2 1 "); GMT_Usage (API, -21, "Chi-squared cumulative distribution function for chi2 = A and nu = B");
GMT_Message (API, GMT_TIME_NONE, " CHI2PDF 2 1 "); GMT_Usage (API, -21, "Chi-squared probability density function for chi = A and nu = B");
GMT_Message (API, GMT_TIME_NONE, " COMB 2 1 "); GMT_Usage (API, -21, "Combinations n_C_r, with n = A and r = B");
GMT_Message (API, GMT_TIME_NONE, " CORRCOEFF 2 1 "); GMT_Usage (API, -21, "Correlation coefficient r(A, B)");
GMT_Message (API, GMT_TIME_NONE, " COS 1 1 "); GMT_Usage (API, -21, "cos (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " COSD 1 1 "); GMT_Usage (API, -21, "cos (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " COSH 1 1 "); GMT_Usage (API, -21, "cosh (A)");
GMT_Message (API, GMT_TIME_NONE, " COT 1 1 "); GMT_Usage (API, -21, "cot (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " COTD 1 1 "); GMT_Usage (API, -21, "cot (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " COTH 1 1 "); GMT_Usage (API, -21, "coth (A)");
GMT_Message (API, GMT_TIME_NONE, " CSC 1 1 "); GMT_Usage (API, -21, "csc (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " CSCD 1 1 "); GMT_Usage (API, -21, "csc (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " CSCH 1 1 "); GMT_Usage (API, -21, "csch (A)");
GMT_Message (API, GMT_TIME_NONE, " CUMSUM 2 1 "); GMT_Usage (API, -21, "Cumulative sum of rows (B=+/-1|3) or columns (B=+/-2|4) in A");
GMT_Message (API, GMT_TIME_NONE, " CURV 1 1 "); GMT_Usage (API, -21, "Curvature of A (Laplacian)");
GMT_Message (API, GMT_TIME_NONE, " D2DX2 1 1 "); GMT_Usage (API, -21, "d^2(A)/dx^2 Central 2nd derivative");
GMT_Message (API, GMT_TIME_NONE, " D2DY2 1 1 "); GMT_Usage (API, -21, "d^2(A)/dy^2 Central 2nd derivative");
GMT_Message (API, GMT_TIME_NONE, " D2DXY 1 1 "); GMT_Usage (API, -21, "d^2(A)/dxdy Central 2nd cross-derivative");
GMT_Message (API, GMT_TIME_NONE, " D2R 1 1 "); GMT_Usage (API, -21, "Converts Degrees to Radians");
GMT_Message (API, GMT_TIME_NONE, " DAYNIGHT 3 1 "); GMT_Usage (API, -21, "1 where sun at (A, B) shines and 0 elsewhere, with C transition width");
GMT_Message (API, GMT_TIME_NONE, " DDX 1 1 "); GMT_Usage (API, -21, "d(A)/dx Central 1st derivative");
GMT_Message (API, GMT_TIME_NONE, " DDY 1 1 "); GMT_Usage (API, -21, "d(A)/dy Central 1st derivative");
GMT_Message (API, GMT_TIME_NONE, " DEG2KM 1 1 "); GMT_Usage (API, -21, "Converts Spherical Degrees to Kilometers");
GMT_Message (API, GMT_TIME_NONE, " DENAN 2 1 "); GMT_Usage (API, -21, "Replace NaNs in A with values from B");
GMT_Message (API, GMT_TIME_NONE, " DILOG 1 1 "); GMT_Usage (API, -21, "dilog (A)");
GMT_Message (API, GMT_TIME_NONE, " DIV 2 1 "); GMT_Usage (API, -21, "A / B");
GMT_Message (API, GMT_TIME_NONE, " DOT 2 1 "); GMT_Usage (API, -21, "Dot product (2-D Cartesian or 3-D geographic) of vector (A,B) with grid nodes locations");
GMT_Message (API, GMT_TIME_NONE, " DUP 1 2 "); GMT_Usage (API, -21, "Places duplicate of A on the stack");
GMT_Message (API, GMT_TIME_NONE, " ECDF 2 1 "); GMT_Usage (API, -21, "Exponential cumulative distribution function for x = A and lambda = B");
GMT_Message (API, GMT_TIME_NONE, " ECRIT 2 1 "); GMT_Usage (API, -21, "Exponential distribution critical value for alpha = A and lambda = B");
GMT_Message (API, GMT_TIME_NONE, " EPDF 2 1 "); GMT_Usage (API, -21, "Exponential probability density function for x = A and lambda = B");
GMT_Message (API, GMT_TIME_NONE, " ERF 1 1 "); GMT_Usage (API, -21, "Error function erf (A)");
GMT_Message (API, GMT_TIME_NONE, " ERFC 1 1 "); GMT_Usage (API, -21, "Complementary Error function erfc (A)");
GMT_Message (API, GMT_TIME_NONE, " EQ 2 1 "); GMT_Usage (API, -21, "1 if A == B, else 0");
GMT_Message (API, GMT_TIME_NONE, " ERFINV 1 1 "); GMT_Usage (API, -21, "Inverse error function of A");
GMT_Message (API, GMT_TIME_NONE, " EXCH 2 2 "); GMT_Usage (API, -21, "Exchanges A and B on the stack");
GMT_Message (API, GMT_TIME_NONE, " EXP 1 1 "); GMT_Usage (API, -21, "exp (A)");
GMT_Message (API, GMT_TIME_NONE, " FACT 1 1 "); GMT_Usage (API, -21, "A! (A factorial)");
GMT_Message (API, GMT_TIME_NONE, " EXTREMA 1 1 "); GMT_Usage (API, -21, "Local extrema: -1 is a (local) minimum, +1 a (local) maximum, and 0 elsewhere");
GMT_Message (API, GMT_TIME_NONE, " FCRIT 3 1 "); GMT_Usage (API, -21, "F distribution critical value for alpha = A, nu1 = B, and nu2 = C");
GMT_Message (API, GMT_TIME_NONE, " FCDF 3 1 "); GMT_Usage (API, -21, "F cumulative distribution function for F = A, nu1 = B, and nu2 = C");
GMT_Message (API, GMT_TIME_NONE, " FISHER 3 1 "); GMT_Usage (API, -21, "Fisher probability density function at grid nodes given stack lon,lat (A, B) and kappa (C)");
GMT_Message (API, GMT_TIME_NONE, " FLIPLR 1 1 "); GMT_Usage (API, -21, "Reverse order of values in each row");
GMT_Message (API, GMT_TIME_NONE, " FLIPUD 1 1 "); GMT_Usage (API, -21, "Reverse order of values in each column");
GMT_Message (API, GMT_TIME_NONE, " FLOOR 1 1 "); GMT_Usage (API, -21, "floor (A) (greatest integer <= A)");
GMT_Message (API, GMT_TIME_NONE, " FMOD 2 1 "); GMT_Usage (API, -21, "A % B (remainder after truncated division)");
GMT_Message (API, GMT_TIME_NONE, " FPDF 3 1 "); GMT_Usage (API, -21, "F probability density function for F = A, nu1 = B and nu2 = C");
GMT_Message (API, GMT_TIME_NONE, " GE 2 1 "); GMT_Usage (API, -21, "1 if A >= B, else 0");
GMT_Message (API, GMT_TIME_NONE, " GT 2 1 "); GMT_Usage (API, -21, "1 if A > B, else 0");
GMT_Message (API, GMT_TIME_NONE, " HSV2LAB 3 3 "); GMT_Usage (API, -21, "Convert hsv to lab, with h = A, s = B and v = C");
GMT_Message (API, GMT_TIME_NONE, " HSV2RGB 3 3 "); GMT_Usage (API, -21, "Convert hsv to rgb, with h = A, s = B and v = C");
GMT_Message (API, GMT_TIME_NONE, " HSV2XYZ 3 3 "); GMT_Usage (API, -21, "Convert hsv to xyz, with h = A, s = B and v = C");
GMT_Message (API, GMT_TIME_NONE, " HYPOT 2 1 "); GMT_Usage (API, -21, "hypot (A, B) = sqrt (A*A + B*B)");
GMT_Message (API, GMT_TIME_NONE, " I0 1 1 "); GMT_Usage (API, -21, "Modified Bessel function of A (1st kind, order 0)");
GMT_Message (API, GMT_TIME_NONE, " I1 1 1 "); GMT_Usage (API, -21, "Modified Bessel function of A (1st kind, order 1)");
GMT_Message (API, GMT_TIME_NONE, " IFELSE 3 1 "); GMT_Usage (API, -21, "B if A != 0, else C");
GMT_Message (API, GMT_TIME_NONE, " IN 2 1 "); GMT_Usage (API, -21, "Modified Bessel function of A (1st kind, order B)");
GMT_Message (API, GMT_TIME_NONE, " INRANGE 3 1 "); GMT_Usage (API, -21, "1 if B <= A <= C, else 0");
GMT_Message (API, GMT_TIME_NONE, " INSIDE 1 1 "); GMT_Usage (API, -21, "1 when inside or on polygon(s) in A, else 0");
GMT_Message (API, GMT_TIME_NONE, " INV 1 1 "); GMT_Usage (API, -21, "1 / A");
GMT_Message (API, GMT_TIME_NONE, " ISFINITE 1 1 "); GMT_Usage (API, -21, "1 if A is finite, else 0");
GMT_Message (API, GMT_TIME_NONE, " ISNAN 1 1 "); GMT_Usage (API, -21, "1 if A == NaN, else 0");
GMT_Message (API, GMT_TIME_NONE, " J0 1 1 "); GMT_Usage (API, -21, "Bessel function of A (1st kind, order 0)");
GMT_Message (API, GMT_TIME_NONE, " J1 1 1 "); GMT_Usage (API, -21, "Bessel function of A (1st kind, order 1)");
GMT_Message (API, GMT_TIME_NONE, " JN 2 1 "); GMT_Usage (API, -21, "Bessel function of A (1st kind, order B)");
GMT_Message (API, GMT_TIME_NONE, " K0 1 1 "); GMT_Usage (API, -21, "Modified Kelvin function of A (2nd kind, order 0)");
GMT_Message (API, GMT_TIME_NONE, " K1 1 1 "); GMT_Usage (API, -21, "Modified Bessel function of A (2nd kind, order 1)");
GMT_Message (API, GMT_TIME_NONE, " KEI 1 1 "); GMT_Usage (API, -21, "Kelvin function kei (A)");
GMT_Message (API, GMT_TIME_NONE, " KER 1 1 "); GMT_Usage (API, -21, "Kelvin function ker (A)");
GMT_Message (API, GMT_TIME_NONE, " KM2DEG 1 1 "); GMT_Usage (API, -21, "Converts Kilometers to Spherical Degrees");
GMT_Message (API, GMT_TIME_NONE, " KN 2 1 "); GMT_Usage (API, -21, "Modified Bessel function of A (2nd kind, order B)");
GMT_Message (API, GMT_TIME_NONE, " KURT 1 1 "); GMT_Usage (API, -21, "Kurtosis of A");
GMT_Message (API, GMT_TIME_NONE, " LAB2HSV 3 3 "); GMT_Usage (API, -21, "Convert lab to hsv, with l = A, a = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " LAB2RGB 3 3 "); GMT_Usage (API, -21, "Convert lab to rgb, with l = A, a = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " LAB2XYZ 3 3 "); GMT_Usage (API, -21, "Convert lab to xyz, with l = A, a = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " LCDF 1 1 "); GMT_Usage (API, -21, "Laplace cumulative distribution function for z = A");
GMT_Message (API, GMT_TIME_NONE, " LCRIT 1 1 "); GMT_Usage (API, -21, "Laplace distribution critical value for alpha = A");
GMT_Message (API, GMT_TIME_NONE, " LDIST 1 1 "); GMT_Usage (API, -21, "Compute minimum distance (in km if -fg) from lines in multi-segment ASCII file A");
GMT_Message (API, GMT_TIME_NONE, " LDISTG 0 1 "); GMT_Usage (API, -21, "As LDIST, but operates on the GSHHG dataset (see -A, -D for options)");
GMT_Message (API, GMT_TIME_NONE, " LDIST2 2 1 "); GMT_Usage (API, -21, "As LDIST, from lines in ASCII file B but only to nodes where A != 0");
GMT_Message (API, GMT_TIME_NONE, " LE 2 1 "); GMT_Usage (API, -21, "1 if A <= B, else 0");
GMT_Message (API, GMT_TIME_NONE, " LOG 1 1 "); GMT_Usage (API, -21, "log (A) (natural log)");
GMT_Message (API, GMT_TIME_NONE, " LOG10 1 1 "); GMT_Usage (API, -21, "log10 (A) (base 10)");
GMT_Message (API, GMT_TIME_NONE, " LOG1P 1 1 "); GMT_Usage (API, -21, "log (1+A) (accurate for small A)");
GMT_Message (API, GMT_TIME_NONE, " LOG2 1 1 "); GMT_Usage (API, -21, "log2 (A) (base 2)");
GMT_Message (API, GMT_TIME_NONE, " LMSSCL 1 1 "); GMT_Usage (API, -21, "LMS scale estimate (LMS STD) of A");
GMT_Message (API, GMT_TIME_NONE, " LMSSCLW 1 1 "); GMT_Usage (API, -21, "Weighted LMS scale estimate (LMS STD) of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " LOWER 1 1 "); GMT_Usage (API, -21, "The lowest (minimum) value of A");
GMT_Message (API, GMT_TIME_NONE, " LPDF 1 1 "); GMT_Usage (API, -21, "Laplace probability density function for z = A");
GMT_Message (API, GMT_TIME_NONE, " LRAND 2 1 "); GMT_Usage (API, -21, "Laplace random noise with mean A and std. deviation B");
GMT_Message (API, GMT_TIME_NONE, " LT 2 1 "); GMT_Usage (API, -21, "1 if A < B, else 0");
GMT_Message (API, GMT_TIME_NONE, " MAD 1 1 "); GMT_Usage (API, -21, "Median Absolute Deviation (L1 STD) of A");
GMT_Message (API, GMT_TIME_NONE, " MADW 2 1 "); GMT_Usage (API, -21, "Weighted Median Absolute Deviation (L1 STD) of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " MAX 2 1 "); GMT_Usage (API, -21, "Maximum of A and B");
GMT_Message (API, GMT_TIME_NONE, " MEAN 1 1 "); GMT_Usage (API, -21, "Mean value of A");
GMT_Message (API, GMT_TIME_NONE, " MEANW 2 1 "); GMT_Usage (API, -21, "Weighted mean value of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " MEDIAN 1 1 "); GMT_Usage (API, -21, "Median value of A");
GMT_Message (API, GMT_TIME_NONE, " MEDIANW 2 1 "); GMT_Usage (API, -21, "Weighted median value of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " MIN 2 1 "); GMT_Usage (API, -21, "Minimum of A and B");
GMT_Message (API, GMT_TIME_NONE, " MOD 2 1 "); GMT_Usage (API, -21, "A mod B (remainder after floored division)");
GMT_Message (API, GMT_TIME_NONE, " MODE 1 1 "); GMT_Usage (API, -21, "Mode value (Least Median of Squares) of A");
GMT_Message (API, GMT_TIME_NONE, " MODEW 2 1 "); GMT_Usage (API, -21, "Weighted mode value of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " MUL 2 1 "); GMT_Usage (API, -21, "A * B");
GMT_Message (API, GMT_TIME_NONE, " NAN 2 1 "); GMT_Usage (API, -21, "NaN if A == B, else A");
GMT_Message (API, GMT_TIME_NONE, " NEG 1 1 "); GMT_Usage (API, -21, "-A");
GMT_Message (API, GMT_TIME_NONE, " NEQ 2 1 "); GMT_Usage (API, -21, "1 if A != B, else 0");
GMT_Message (API, GMT_TIME_NONE, " NORM 1 1 "); GMT_Usage (API, -21, "Normalize (A) so min(A) = 0 and max(A) = 1");
GMT_Message (API, GMT_TIME_NONE, " NOT 1 1 "); GMT_Usage (API, -21, "NaN if A == NaN, 1 if A == 0, else 0");
GMT_Message (API, GMT_TIME_NONE, " NRAND 2 1 "); GMT_Usage (API, -21, "Normal, random values with mean A and std. deviation B");
GMT_Message (API, GMT_TIME_NONE, " OR 2 1 "); GMT_Usage (API, -21, "NaN if B == NaN, else A");
GMT_Message (API, GMT_TIME_NONE, " PCDF 2 1 "); GMT_Usage (API, -21, "Poisson cumulative distribution function x = A and lambda = B");
GMT_Message (API, GMT_TIME_NONE, " PPDF 2 1 "); GMT_Usage (API, -21, "Poisson probability density function for x = A and lambda = B");
GMT_Message (API, GMT_TIME_NONE, " PDIST 1 1 "); GMT_Usage (API, -21, "Compute minimum distance (in km if -fg) from points in ASCII file A");
GMT_Message (API, GMT_TIME_NONE, " PDIST2 2 1 "); GMT_Usage (API, -21, "As PDIST, from points in ASCII file B but only to nodes where A != 0");
GMT_Message (API, GMT_TIME_NONE, " PERM 2 1 "); GMT_Usage (API, -21, "Permutations n_P_r, with n = A and r = B");
GMT_Message (API, GMT_TIME_NONE, " POP 1 0 "); GMT_Usage (API, -21, "Delete top element from the stack");
GMT_Message (API, GMT_TIME_NONE, " PLM 3 1 "); GMT_Usage (API, -21, "Associated Legendre polynomial P(A) degree B order C");
GMT_Message (API, GMT_TIME_NONE, " PLMg 3 1 "); GMT_Usage (API, -21, "Normalized associated Legendre polynomial P(A) degree B order C (geophysical convention)");
GMT_Message (API, GMT_TIME_NONE, " POINT 1 2 "); GMT_Usage (API, -21, "Return mean_x mean_y of points in ASCII file A");
GMT_Message (API, GMT_TIME_NONE, " POW 2 1 "); GMT_Usage (API, -21, "A ^ B");
GMT_Message (API, GMT_TIME_NONE, " PQUANT 2 1 "); GMT_Usage (API, -21, "The B'th Quantile (0-100%) of A");
GMT_Message (API, GMT_TIME_NONE, " PQUANTW 3 1 "); GMT_Usage (API, -21, "The C'th Quantile (0-100%) of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " PSI 1 1 "); GMT_Usage (API, -21, "Psi (or Digamma) of A");
GMT_Message (API, GMT_TIME_NONE, " PV 3 1 "); GMT_Usage (API, -21, "Legendre function Pv(A) of degree v = real(B) + imag(C)");
GMT_Message (API, GMT_TIME_NONE, " QV 3 1 "); GMT_Usage (API, -21, "Legendre function Qv(A) of degree v = real(B) + imag(C)");
GMT_Message (API, GMT_TIME_NONE, " R2 2 1 "); GMT_Usage (API, -21, "R2 = A^2 + B^2");
GMT_Message (API, GMT_TIME_NONE, " R2D 1 1 "); GMT_Usage (API, -21, "Convert Radians to Degrees");
GMT_Message (API, GMT_TIME_NONE, " RAND 2 1 "); GMT_Usage (API, -21, "Uniform random values between A and B");
GMT_Message (API, GMT_TIME_NONE, " RCDF 1 1 "); GMT_Usage (API, -21, "Rayleigh cumulative distribution function for z = A");
GMT_Message (API, GMT_TIME_NONE, " RCRIT 1 1 "); GMT_Usage (API, -21, "Rayleigh distribution critical value for alpha = A");
GMT_Message (API, GMT_TIME_NONE, " RGB2HSV 3 3 "); GMT_Usage (API, -21, "Convert rgb to hsv, with r = A, g = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " RGB2LAB 3 3 "); GMT_Usage (API, -21, "Convert rgb to lab, with r = A, g = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " RGB2XYZ 3 3 "); GMT_Usage (API, -21, "Convert rgb to xyz, with r = A, g = B and b = C");
GMT_Message (API, GMT_TIME_NONE, " RINT 1 1 "); GMT_Usage (API, -21, "rint (A) (round to integral value nearest to A)");
GMT_Message (API, GMT_TIME_NONE, " RMS 1 1 "); GMT_Usage (API, -21, "Root-mean-square of A");
GMT_Message (API, GMT_TIME_NONE, " RMSW 2 1 "); GMT_Usage (API, -21, "Weighted Root-mean-square of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " RPDF 1 1 "); GMT_Usage (API, -21, "Rayleigh probability density function for z = A");
GMT_Message (API, GMT_TIME_NONE, " ROLL 2 0 "); GMT_Usage (API, -21, "Cyclically shifts the top A stack items by an amount B");
GMT_Message (API, GMT_TIME_NONE, " ROTX 2 1 "); GMT_Usage (API, -21, "Rotate A by the (constant) shift B in x-direction");
GMT_Message (API, GMT_TIME_NONE, " ROTY 2 1 "); GMT_Usage (API, -21, "Rotate A by the (constant) shift B in y-direction");
GMT_Message (API, GMT_TIME_NONE, " SADDLE 1 1 "); GMT_Usage (API, -21, "Critical points: -1|+1 is a saddle with min|max in x-direction; 0 elsewhere");
GMT_Message (API, GMT_TIME_NONE, " SAZ 2 1 "); GMT_Usage (API, -21, "Spherical azimuth from grid nodes to stack x,y");
GMT_Message (API, GMT_TIME_NONE, " SBAZ 2 1 "); GMT_Usage (API, -21, "Spherical back-azimuth from grid nodes to stack x,y");
GMT_Message (API, GMT_TIME_NONE, " SEC 1 1 "); GMT_Usage (API, -21, "sec (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " SECD 1 1 "); GMT_Usage (API, -21, "sec (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " SECH 1 1 "); GMT_Usage (API, -21, "sech (A)");
GMT_Message (API, GMT_TIME_NONE, " SDIST 2 1 "); GMT_Usage (API, -21, "Spherical distance (in km) between grid nodes and stack lon,lat (A, B)");
GMT_Message (API, GMT_TIME_NONE, " SDIST2 2 1 "); GMT_Usage (API, -21, "As SDIST but only to nodes that are != 0");
GMT_Message (API, GMT_TIME_NONE, " SIGN 1 1 "); GMT_Usage (API, -21, "sign (+1 or -1) of A");
GMT_Message (API, GMT_TIME_NONE, " SIN 1 1 "); GMT_Usage (API, -21, "sin (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " SINC 1 1 "); GMT_Usage (API, -21, "sinc (A) (sin (pi*A)/(pi*A))");
GMT_Message (API, GMT_TIME_NONE, " SIND 1 1 "); GMT_Usage (API, -21, "sin (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " SINH 1 1 "); GMT_Usage (API, -21, "sinh (A)");
GMT_Message (API, GMT_TIME_NONE, " SKEW 1 1 "); GMT_Usage (API, -21, "Skewness of A");
GMT_Message (API, GMT_TIME_NONE, " SQR 1 1 "); GMT_Usage (API, -21, "A^2");
GMT_Message (API, GMT_TIME_NONE, " SQRT 1 1 "); GMT_Usage (API, -21, "sqrt (A)");
GMT_Message (API, GMT_TIME_NONE, " STD 1 1 "); GMT_Usage (API, -21, "Standard deviation of A");
GMT_Message (API, GMT_TIME_NONE, " STDW 2 1 "); GMT_Usage (API, -21, "Weighted standard deviation of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " STEP 1 1 "); GMT_Usage (API, -21, "Heaviside step function: H(A)");
GMT_Message (API, GMT_TIME_NONE, " STEPX 1 1 "); GMT_Usage (API, -21, "Heaviside step function in x: H(x-A)");
GMT_Message (API, GMT_TIME_NONE, " STEPY 1 1 "); GMT_Usage (API, -21, "Heaviside step function in y: H(y-A)");
GMT_Message (API, GMT_TIME_NONE, " SUB 2 1 "); GMT_Usage (API, -21, "A - B");
GMT_Message (API, GMT_TIME_NONE, " SUM 1 1 "); GMT_Usage (API, -21, "Sum of all values in A");
GMT_Message (API, GMT_TIME_NONE, " TAN 1 1 "); GMT_Usage (API, -21, "tan (A) (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " TAND 1 1 "); GMT_Usage (API, -21, "tan (A) (A in degrees)");
GMT_Message (API, GMT_TIME_NONE, " TANH 1 1 "); GMT_Usage (API, -21, "tanh (A)");
GMT_Message (API, GMT_TIME_NONE, " TAPER 2 1 "); GMT_Usage (API, -21, "Unit weights cosine-tapered to zero within A and B of x and y grid margins");
GMT_Message (API, GMT_TIME_NONE, " TN 2 1 "); GMT_Usage (API, -21, "Chebyshev polynomial Tn(-1<t<+1,n), with t = A, and n = B");
GMT_Message (API, GMT_TIME_NONE, " TCRIT 2 1 "); GMT_Usage (API, -21, "Student's t-distribution critical value for alpha = A and nu = B");
GMT_Message (API, GMT_TIME_NONE, " TCDF 2 1 "); GMT_Usage (API, -21, "Student's t cumulative distribution function for t = A, and nu = B");
GMT_Message (API, GMT_TIME_NONE, " TPDF 2 1 "); GMT_Usage (API, -21, "Student's t probability density function for t = A and nu = B");
GMT_Message (API, GMT_TIME_NONE, " TRIM 3 1 "); GMT_Usage (API, -21, "Alpha-trimming for %%-left = A, %%-right = B, and grid = C");
GMT_Message (API, GMT_TIME_NONE, " UPPER 1 1 "); GMT_Usage (API, -21, "The highest (maximum) value of A");
GMT_Message (API, GMT_TIME_NONE, " VAR 1 1 "); GMT_Usage (API, -21, "Variance of A");
GMT_Message (API, GMT_TIME_NONE, " VARW 2 1 "); GMT_Usage (API, -21, "Weighted variance of A for weights in B");
GMT_Message (API, GMT_TIME_NONE, " VPDF 3 1 "); GMT_Usage (API, -21, "Von Mises probability density function for angles = A, mu = B and kappa = C");
GMT_Message (API, GMT_TIME_NONE, " WCDF 3 1 "); GMT_Usage (API, -21, "Weibull cumulative distribution function for x = A, scale = B, and shape = C");
GMT_Message (API, GMT_TIME_NONE, " WCRIT 3 1 "); GMT_Usage (API, -21, "Weibull distribution critical value for alpha = A, scale = B, and shape = C");
GMT_Message (API, GMT_TIME_NONE, " WPDF 3 1 "); GMT_Usage (API, -21, "Weibull probability density function for x = A, scale = B and shape = C");
GMT_Message (API, GMT_TIME_NONE, " WRAP 1 1 "); GMT_Usage (API, -21, "wrap (A). (A in radians)");
GMT_Message (API, GMT_TIME_NONE, " XOR 2 1 "); GMT_Usage (API, -21, "0 if A == NaN and B == NaN, NaN if B == NaN, else A");
GMT_Message (API, GMT_TIME_NONE, " XYZ2HSV 3 3 "); GMT_Usage (API, -21, "Convert xyz to hsv, with x = A, y = B and z = C");
GMT_Message (API, GMT_TIME_NONE, " XYZ2LAB 3 3 "); GMT_Usage (API, -21, "Convert xyz to lab, with x = A, y = B and z = C");
GMT_Message (API, GMT_TIME_NONE, " XYZ2RGB 3 3 "); GMT_Usage (API, -21, "Convert xyz to rgb, with x = A, y = B and z = C");
GMT_Message (API, GMT_TIME_NONE, " Y0 1 1 "); GMT_Usage (API, -21, "Bessel function of A (2nd kind, order 0)");
GMT_Message (API, GMT_TIME_NONE, " Y1 1 1 "); GMT_Usage (API, -21, "Bessel function of A (2nd kind, order 1)");
GMT_Message (API, GMT_TIME_NONE, " YLM 2 2 "); GMT_Usage (API, -21, "Re and Im orthonormalized spherical harmonics degree A order B");
GMT_Message (API, GMT_TIME_NONE, " YLMg 2 2 "); GMT_Usage (API, -21, "Cos and Sin normalized spherical harmonics degree A order B (geophysical convention)");
GMT_Message (API, GMT_TIME_NONE, " YN 2 1 "); GMT_Usage (API, -21, "Bessel function of A (2nd kind, order B)");
GMT_Message (API, GMT_TIME_NONE, " ZCRIT 1 1 "); GMT_Usage (API, -21, "Normal distribution critical value for alpha = A");
GMT_Message (API, GMT_TIME_NONE, " ZCDF 1 1 "); GMT_Usage (API, -21, "Normal cumulative distribution function for z = A");
GMT_Message (API, GMT_TIME_NONE, " ZPDF 1 1 "); GMT_Usage (API, -21, "Normal probability density function for z = A");
GMT_Usage (API, -2, "\nThe special constants are:\n");
GMT_Message (API, GMT_TIME_NONE, " PI = "); GMT_Usage (API, -26, "3.1415926...");
GMT_Message (API, GMT_TIME_NONE, " E = "); GMT_Usage (API, -26, "2.7182818...");
GMT_Message (API, GMT_TIME_NONE, " F_EPS (single eps) = "); GMT_Usage (API, -26, "1.192092896e-07");
GMT_Message (API, GMT_TIME_NONE, " EULER = "); GMT_Usage (API, -26, "0.5772156...");
GMT_Message (API, GMT_TIME_NONE, " PHI (golden ratio) = "); GMT_Usage (API, -26, "1.6180339...");
GMT_Message (API, GMT_TIME_NONE, " XMIN or YMIN = "); GMT_Usage (API, -26, "minimum value of x or y");
GMT_Message (API, GMT_TIME_NONE, " XMAX or YMAX = "); GMT_Usage (API, -26, "maximum value of x or y");
GMT_Message (API, GMT_TIME_NONE, " XRANGE or YRANGE = "); GMT_Usage (API, -26, "full range of x or y");
GMT_Message (API, GMT_TIME_NONE, " XINC or YINC = "); GMT_Usage (API, -26, "increment in x or y");
GMT_Message (API, GMT_TIME_NONE, " NX or NY = "); GMT_Usage (API, -26, "dimension of x or y");
GMT_Usage (API, -2, "\nThe special grids are:\n");
GMT_Message (API, GMT_TIME_NONE, " NODE = "); GMT_Usage (API, -26, "grid with continuous node indices (0-(NX*NY-1))");
GMT_Message (API, GMT_TIME_NONE, " NODEP = "); GMT_Usage (API, -26, "grid with discontinuous node indices due to padding");
GMT_Message (API, GMT_TIME_NONE, " X or Y = "); GMT_Usage (API, -26, "grid with x- or y-coordinates");
GMT_Message (API, GMT_TIME_NONE, " XNORM or YNORM = "); GMT_Usage (API, -26, "grid with normalized [-1|+1] x- or y-coordinates");
GMT_Message (API, GMT_TIME_NONE, " XCOL = "); GMT_Usage (API, -26, "grid with column numbers 0, 1, ..., NX-1");
GMT_Message (API, GMT_TIME_NONE, " YROW = "); GMT_Usage (API, -26, "grid with row numbers 0, 1, ..., NY-1");
GMT_Usage (API, -2, "\nUse macros for frequently used long expressions; see the grdmath documentation. "
"Store stack to named variable via STO@<label>, recall via [RCL]@<label>, clear via CLR@<label>.");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:"
"\n (only use -R|I|r|f if no grid files are passed as arguments).\n");
gmt_GSHHG_syntax (API->GMT, 'A');
GMT_Usage (API, -2, "Note: -A is only relevant if using the LDISTG operator.");
GMT_Usage (API, 1, "\n-D<resolution>[+f]");
GMT_Usage (API, -2, "Choose one of the following resolutions to use with the LDISTG operator:");
GMT_Usage (API, 3, "f: Full resolution (may be very slow for large regions).");
GMT_Usage (API, 3, "h: High resolution (may be slow for large regions).");
GMT_Usage (API, 3, "i: Intermediate resolution.");
GMT_Usage (API, 3, "l: Low resolution [Default].");
GMT_Usage (API, 3, "c: Crude resolution, for busy plots that need crude continent outlines only.");
GMT_Usage (API, -2, "Append +f to use a lower resolution should the chosen one not be available [Default will abort]. ");
GMT_Usage (API, -2, "Note: -D is only relevant if using the LDISTG operator.");
GMT_Option (API, "I");
GMT_Usage (API, 1, "\n-M Handle map units in derivatives. In this case, dx,dy of grid "
"will be converted from degrees lon,lat into meters (Flat-earth approximation). "
"Default computes derivatives in units of data/grid_distance.");
GMT_Usage (API, 1, "\n-N Do not perform strict domain check if several grids are involved. "
"[Default checks that domain is within %g * [xinc or yinc] of each other].", GMT_CONV4_LIMIT);
GMT_Option (API, "R");
GMT_Usage (API, 1, "\n-S Reduce the entire Stack to a single layer by applying the next operator to "
"co-registered nodes across the stack. You must select a reducing operator, i.e., "
"ADD, AND, MAD, LMSSCL, MAX, MEAN, MEDIAN, MIN, MODE, MUL, RMS, STD, SUB, VAR or XOR. "
"Note: Select -S after you have placed all items of interest on the stack.");
GMT_Option (API, "V");
GMT_Option (API, "a,bi2,di,e,f,g,h,i");
if (gmt_M_showusage (API)) GMT_Usage (API, -2, "Note: Only applies to the input files for operators LDIST, PDIST, POINT and INSIDE.");
GMT_Option (API, "n,r,x,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct GRDMATH_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to grdmath and sets parameters in CTRL.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
unsigned int n_errors = 0;
bool missing_equal = true;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
for (opt = options; opt; opt = opt->next) {
switch (opt->option) {
case '<': /* Input files */
if (opt->arg[0] == '=' && !opt->arg[1]) {
missing_equal = false;
if (opt->next && (opt->next->option == GMT_OPT_INFILE)) {
Ctrl->Out.active = true;
if (opt->next->option == GMT_OPT_OUTFILE)
opt->next->option = GMT_OPT_OUTFILE2; /* See definition of this for reason */
}
}
break;
case '=': /* Output files */
case '>': /* Output files */
missing_equal = false;
break;
case '#': /* Numbers */
break;
/* Processes program-specific parameters */
case 'A': /* Restrict GSHHS features */
n_errors += gmt_M_repeated_module_option (API, Ctrl->A.active);
n_errors += gmt_set_levels (GMT, opt->arg, &Ctrl->A.info);
break;
case 'C': /* Control default CPT */
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.active);
if (opt->arg[0]) Ctrl->C.cpt = opt->arg; /* Just pass pointer if given an argument */
break;
case 'D': /* Set GSHHS resolution */
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
n_errors += gmt_get_required_char (GMT, opt->arg, opt->option, 0, &Ctrl->D.set);
Ctrl->D.force = (opt->arg[1] == '+');
break;
case 'I': /* Grid spacings */
n_errors += gmt_M_repeated_module_option (API, Ctrl->I.active);
n_errors += gmt_parse_inc_option (GMT, 'I', opt->arg);
break;
case 'M': /* Map units */
n_errors += gmt_M_repeated_module_option (API, Ctrl->M.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'N': /* Relax domain check */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'S': /* Only checked later */
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
}
}
if (missing_equal) {
GMT_Report (API, GMT_MSG_ERROR, "Usage is <operations> = <outgrid>\n");
n_errors++;
}
if (GMT->common.R.active[ISET] && (GMT->common.R.inc[GMT_X] <= 0.0 || GMT->common.R.inc[GMT_Y] <= 0.0)) {
GMT_Report (API, GMT_MSG_ERROR, "Option -I: Must specify positive increment(s)\n");
n_errors++;
}
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
GMT_LOCAL struct GMT_GRID *grdmath_alloc_stack_grid (struct GMT_CTRL *GMT, struct GMT_GRID *Template) {
/* Allocate a new GMT_GRID structure based on dimensions etc of the Template */
struct GMT_GRID *New = GMT_Create_Data (GMT->parent, GMT_IS_GRID, GMT_IS_SURFACE, GMT_CONTAINER_AND_DATA, NULL, Template->header->wesn, Template->header->inc, \
Template->header->registration, GMT_NOTSET, NULL);
return (New);
}
GMT_LOCAL int grdmath_find_stored_item (struct GMT_CTRL *GMT, struct GRDMATH_STORE *recall[], int n_stored, char *label) {
int k = 0;
gmt_M_unused(GMT);
while (k < n_stored && strcmp (recall[k]->label, label)) k++;
return (k == n_stored ? GMT_NOTSET : k);
}
/* Stack collapsing operators that work on same nodes across all stack items */
GMT_LOCAL double grdmath_stack_collapse_add (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double sum = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++) sum += array[k];
return sum;
}
GMT_LOCAL double grdmath_stack_collapse_and (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double x = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
x = (gmt_M_is_dnan (x)) ? array[k] : x;
return x;
}
GMT_LOCAL double grdmath_stack_collapse_lmsscl (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double lmsscl;
gmt_sort_array (GMT, array, n, GMT_DOUBLE);
while (n > 1 && gmt_M_is_dnan (array[n-1])) n--;
if (n) {
unsigned int gmt_mode_selection = 0, GMT_n_multiples = 0;
double mode;
gmt_mode (GMT, array, n, n/2, 0, gmt_mode_selection, &GMT_n_multiples, &mode);
gmt_getmad (GMT, array, n, mode, &lmsscl);
}
else
lmsscl = GMT->session.d_NaN;
return lmsscl;
}
GMT_LOCAL double grdmath_stack_collapse_mad (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double mad;
gmt_sort_array (GMT, array, n, GMT_DOUBLE);
while (n > 1 && gmt_M_is_dnan (array[n-1])) n--;
if (n) {
double med = (n%2) ? array[n/2] : 0.5 * (array[(n-1)/2] + array[n/2]);
gmt_getmad (GMT, array, n, med, &mad);
}
else
mad = GMT->session.d_NaN;
return mad;
}
GMT_LOCAL double grdmath_stack_collapse_max (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double max = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
if (array[k] > max) max = array[k];
return max;
}
GMT_LOCAL double grdmath_stack_collapse_mean (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double std = 0.0;
return gmt_mean_and_std (GMT, array, n, &std);
}
GMT_LOCAL double grdmath_stack_collapse_median (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double med;
gmt_sort_array (GMT, array, n, GMT_DOUBLE);
while (n > 1 && gmt_M_is_dnan (array[n-1])) n--;
if (n)
med = (n%2) ? array[n/2] : 0.5 * (array[(n-1)/2] + array[n/2]);
else
med = GMT->session.d_NaN;
return med;
}
GMT_LOCAL double grdmath_stack_collapse_min (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double min = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
if (array[k] < min) min = array[k];
return min;
}
GMT_LOCAL double grdmath_stack_collapse_mode (struct GMT_CTRL *GMT, double *array, uint64_t n) {
unsigned int gmt_mode_selection = 0, GMT_n_multiples = 0;
double mode;
gmt_mode (GMT, array, n, n/2, true, gmt_mode_selection, &GMT_n_multiples, &mode);
return mode;
}
GMT_LOCAL double grdmath_stack_collapse_mul (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double prod = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
prod *= array[k];
return prod;
}
GMT_LOCAL double grdmath_stack_collapse_or (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double x = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
x = (gmt_M_is_dnan (x) || gmt_M_is_dnan (array[k])) ? GMT->session.d_NaN : x;
return x;
}
GMT_LOCAL double grdmath_stack_collapse_rms (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double rms = 0.0;
gmt_M_unused (GMT);
for (k = 0; k < n; k++)
rms += array[k] * array[k];
return sqrt (rms / n);
}
GMT_LOCAL double grdmath_stack_collapse_std (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double std = 0.0;
(void)gmt_mean_and_std (GMT, array, n, &std);
return std;
}
GMT_LOCAL double grdmath_stack_collapse_sub (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double sum = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
sum -= array[k];
return sum;
}
GMT_LOCAL double grdmath_stack_collapse_var (struct GMT_CTRL *GMT, double *array, uint64_t n) {
double std = 0.0;
(void)gmt_mean_and_std (GMT, array, n, &std);
return (std * std);
}
GMT_LOCAL double grdmath_stack_collapse_xor (struct GMT_CTRL *GMT, double *array, uint64_t n) {
uint64_t k;
double x = array[0];
gmt_M_unused (GMT);
for (k = 1; k < n; k++)
x = (gmt_M_is_dnan (x) && gmt_M_is_dnan (array[k])) ? 0.0 : (gmt_M_is_dnan (array[k]) ? GMT->session.d_NaN : x);
return x;
}
/* -----------------------------------------------------------------
* Definitions of all operator functions
* -----------------------------------------------------------------*/
GMT_LOCAL int grdmath_collapse_stack (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last, char *OP) {
/* Collapse stack will apply the given operator to all items on the stack, per node.
* E.g., you may have 7 grids on the stack and you want to return the mean value per node
* for all 7 grids, to be replaced by a single grid with those means. You would do
* gmt grdmath *.grd -S MEAN = means.grd
* where the -S option turns on the collapsible stack operators; it turns itself off
* once the stack has been processed to yield a single new grid on the stack.
*/
uint64_t node, s;
double *array = NULL;
double (*func) (struct GMT_CTRL *, double *, uint64_t); /* Pointer to function returning a double */
/* First ensure we have a reducing operator */
if (!strcmp (OP, "ADD"))
func = &grdmath_stack_collapse_add;
else if (!strcmp (OP, "AND"))
func = &grdmath_stack_collapse_and;
else if (!strcmp (OP, "LMSSCL"))
func = &grdmath_stack_collapse_lmsscl;
else if (!strcmp (OP, "MAD"))
func = &grdmath_stack_collapse_mad;
else if (!strcmp (OP, "MAX"))
func = &grdmath_stack_collapse_max;
else if (!strcmp (OP, "MEAN"))
func = &grdmath_stack_collapse_mean;
else if (!strcmp (OP, "MEDIAN"))
func = &grdmath_stack_collapse_median;
else if (!strcmp (OP, "MIN"))
func = &grdmath_stack_collapse_min;
else if (!strcmp (OP, "MODE"))
func = &grdmath_stack_collapse_mode;
else if (!strcmp (OP, "MUL"))
func = &grdmath_stack_collapse_mul;
else if (!strcmp (OP, "OR"))
func = &grdmath_stack_collapse_or;
else if (!strcmp (OP, "STD"))
func = &grdmath_stack_collapse_std;
else if (!strcmp (OP, "SUB"))
func = &grdmath_stack_collapse_sub;
else if (!strcmp (OP, "RMS"))
func = &grdmath_stack_collapse_rms;
else if (!strcmp (OP, "VAR"))
func = &grdmath_stack_collapse_var;
else if (!strcmp (OP, "XOR"))
func = &grdmath_stack_collapse_xor;
else {
GMT_Report (GMT->parent, GMT_MSG_ERROR, "Unrecognized stack reduction operator %s - ignored\n", OP);
return 1;
}
array = gmt_M_memory (GMT, NULL, last, double);
for (node = 0; node < info->size; node++) { /* For all nodes */
for (s = 0; s < last; s++) /* For all items on stack at this node */
array[s] = (stack[s]->constant) ? stack[last]->factor : stack[s]->G->data[node];
/* Now do reducing operation on this stack array */
stack[0]->G->data[node] = func (GMT, array, last);
}
gmt_M_free (GMT, array);
return 0;
}
/* Note: The OPERATOR: **** lines are used to extract syntax for documentation */
GMT_LOCAL void grdmath_ABS (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ABS 1 1 abs (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
if (stack[last]->constant && stack[last]->factor == 0.0) GMT_Report (GMT->parent, GMT_MSG_DEBUG, "ABS: Operand == 0!\n");
if (stack[last]->constant) a = (gmt_grdfloat)fabs (stack[last]->factor);
for (node = 0; node < info->size; node++) stack[last]->G->data[node] = (stack[last]->constant) ? a : fabsf (stack[last]->G->data[node]);
gmt_grd_pad_zero (GMT, stack[last]->G); /* Reset the boundary pad, if needed */
}
GMT_LOCAL void grdmath_ACOS (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOS 1 1 acos (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0) GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACOS!\n");
if (stack[last]->constant) a = (gmt_grdfloat)d_acos (stack[last]->factor);
for (node = 0; node < info->size; node++) stack[last]->G->data[node] = (stack[last]->constant) ? a : d_acosf (stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACOSD (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOSD 1 1 acosd (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0) GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACOSD!\n");
if (stack[last]->constant) a = (gmt_grdfloat)(R2D * d_acos (stack[last]->factor));
for (node = 0; node < info->size; node++) stack[last]->G->data[node] = (stack[last]->constant) ? a : R2D * d_acosf (stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACOSH (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOSH 1 1 acosh (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
if (stack[last]->constant && fabs (stack[last]->factor) < 1.0)
GMT_Report (GMT->parent, GMT_MSG_WARNING, "Operand < 1 for ACOSH!\n");
if (stack[last]->constant) a = (gmt_grdfloat)acosh (stack[last]->factor);
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : acoshf (stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACOT (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOT 1 1 acot (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0)
GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACOT!\n");
if (stack[last]->constant) a = (gmt_grdfloat)atan (1.0 / stack[last]->factor);
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : atanf (1.0f / stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACOTD (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOTD 1 1 acotd (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0)
GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACOTD!\n");
if (stack[last]->constant) a = (gmt_grdfloat)(R2D * atan (1.0 / stack[last]->factor));
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : R2D * atanf (1.0f / stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACOTH (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACOTH 1 1 acoth (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
if (stack[last]->constant && fabs (stack[last]->factor) <= 1.0) GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| <= 1 for ACOTH!\n");
if (stack[last]->constant) a = (gmt_grdfloat)atanh (1.0/stack[last]->factor);
for (node = 0; node < info->size; node++) stack[last]->G->data[node] = (stack[last]->constant) ? a : atanhf (1.0f/stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACSC (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACSC 1 1 acsc (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0)
GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACSC!\n");
if (stack[last]->constant) a = (gmt_grdfloat)d_asin (1.0 / stack[last]->factor);
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : d_asinf (1.0f / stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACSCD (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACSCD 1 1 acscd (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0)
GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ACSCD!\n");
if (stack[last]->constant) a = (gmt_grdfloat)(R2D * d_asin (1.0 / stack[last]->factor));
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : R2D * d_asinf (1.0f / stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ACSCH (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ACSCH 1 1 acsch (A). */
{
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_M_unused(GMT);
if (stack[last]->constant) a = (gmt_grdfloat)asinh (1.0/stack[last]->factor);
for (node = 0; node < info->size; node++) stack[last]->G->data[node] = (stack[last]->constant) ? a : asinhf (1.0f/stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ADD (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ADD 2 1 A + B. */
{
uint64_t node;
unsigned int prev = last - 1;
double a, b;
gmt_M_unused(GMT);
for (node = 0; node < info->size; node++) {
a = (stack[prev]->constant) ? stack[prev]->factor : stack[prev]->G->data[node];
b = (stack[last]->constant) ? stack[last]->factor : stack[last]->G->data[node];
stack[prev]->G->data[node] = (gmt_grdfloat)(a + b);
}
}
GMT_LOCAL void grdmath_AND (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: AND 2 1 B if A == NaN, else A. */
{
uint64_t node;
unsigned int prev = last - 1;
double a, b;
gmt_M_unused(GMT);
for (node = 0; node < info->size; node++) {
a = (stack[prev]->constant) ? stack[prev]->factor : stack[prev]->G->data[node];
b = (stack[last]->constant) ? stack[last]->factor : stack[last]->G->data[node];
stack[prev]->G->data[node] = (gmt_grdfloat)((gmt_M_is_dnan (a)) ? b : a);
}
}
GMT_LOCAL void grdmath_ARC (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last)
/*OPERATOR: ARC 2 1 arc(A, B) = pi - |pi - |a-b|| for A, B in radians. */
/*
given phase values a and b each in radians on [-pi,pi]
return arc(a,b) on [0 pi]
see eq 2.3.13 page 19, Mardia and Jupp [2000]
c = pi - abs(pi-abs(a-b))
Kurt Feigl 2014-AUG-10
*/
{
uint64_t node;
unsigned int prev = last - 1;
double a, b;
gmt_M_unused(GMT);
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
for (node = 0; node < info->size; node++) {
a = (stack[prev]->constant) ? stack[prev]->factor : stack[prev]->G->data[node];
b = (stack[last]->constant) ? stack[last]->factor : stack[last]->G->data[node];
/* Both arguments must be in range [-pi,pi] radians */
if ((a >= -M_PI) && (a <= M_PI) && (b >= -M_PI) && (b <= M_PI))
stack[prev]->G->data[node] = (gmt_grdfloat)(M_PI-fabs(M_PI-fabs(a-b)));
else
stack[prev]->G->data[node] = GMT->session.f_NaN; /* NaN output */
}
}
GMT_LOCAL void grdmath_AREA (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last) {
/*OPERATOR: AREA 0 1 Area of each gridnode cell (spherical calculation in km^2 if geographic). */
gmt_M_unused(info);
gmt_get_cellarea (GMT, stack[last]->G);
}
GMT_LOCAL void grdmath_ASEC (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last) {
/*OPERATOR: ASEC 1 1 asec (A). */
uint64_t node;
gmt_grdfloat a = 0.0;
gmt_set_column_type (GMT, GMT_OUT, GMT_Z, GMT_IS_ANGLE);
if (stack[last]->constant && fabs (stack[last]->factor) > 1.0) GMT_Report (GMT->parent, GMT_MSG_WARNING, "|Operand| > 1 for ASEC!\n");
if (stack[last]->constant) a = (gmt_grdfloat)d_acos (1.0 / stack[last]->factor);
for (node = 0; node < info->size; node++)
stack[last]->G->data[node] = (stack[last]->constant) ? a : d_acosf (1.0f / stack[last]->G->data[node]);
}
GMT_LOCAL void grdmath_ASECD (struct GMT_CTRL *GMT, struct GRDMATH_INFO *info, struct GRDMATH_STACK *stack[], unsigned int last) {
/*OPERATOR: ASECD 1 1 asecd (A). */
uint64_t node;
gmt_grdfloat a = 0.0;