Source file plplot.ml
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
include Plplot_core
open Printf
(** [plcalc_device x y] will give the device position, in normalized device
coordinates, of the world coordinates (x, y). *)
let plcalc_device x y =
let xmin, xmax, ymin, ymax = plgvpw () in
let dev_xmin, dev_xmax, dev_ymin, dev_ymax = plgvpd () in
let width = xmax -. xmin in
let height = ymax -. ymin in
let dev_width = dev_xmax -. dev_xmin in
let dev_height = dev_ymax -. dev_ymin in
((x -. xmin) /. width) *. dev_width +. dev_xmin,
((y -. ymin) /. height) *. dev_height +. dev_ymin
(** [plfullcanvas ()] maximizes the plot viewport and window. Dimensions are
set to (0.0, 0.0) to (1.0, 1.0). *)
let plfullcanvas () =
plvpor 0.0 1.0 0.0 1.0;
plwind 0.0 1.0 0.0 1.0;
()
(** Draw an unfilled polygon. The only functional difference between this and
{plline} is that this function will close the given polygon, so there is no
need to duplicate points to have a closed figure. *)
let plpolyline xs ys =
plline xs ys;
ose off the polygon. *)
pljoin xs.(0) ys.(0) xs.(Array.length xs - 1) ys.(Array.length ys - 1)
(** Support modules for Plot and Quick_plot *)
module Option = struct
let may f o =
match o with
| Some x -> f x
| None -> ()
let default x_default o =
match o with
| Some x -> x
| None -> x_default
let map f o =
match o with
| Some x -> Some (f x)
| None -> None
let map_default f x_default o =
match o with
| Some x -> f x
| None -> x_default
end
module Array_ext = struct
let matrix_dims m =
let ni = Array.length m in
if ni = 0 then 0, 0 else (
let nj = Array.length (Array.unsafe_get m 0) in
for i = 1 to ni - 1 do
if Array.length (Array.unsafe_get m i) <> nj
then invalid_arg "Non-rectangular array"
done;
ni, nj
)
(** [range ~n a b] returns an array with elements ranging from [a] to [b]
in [n] total elements. *)
let range ~n a b =
let step = (b -. a) /. (float n -. 1.0) in
Array.init n (
fun i ->
a +. float i *. step
)
(** [reduce f a] performs a fold of [f] over [a], using only the elements of
[a]. *)
let reduce f a =
if Array.length a = 0 then
invalid_arg "reduce: empty array"
else (
let acc = ref a.(0) in
for i = 1 to Array.length a - 1 do acc := f !acc a.(i) done;
!acc
)
end
(** Work-in-progress easy plotting library for PLplot. The intention is to
provide a PLplot interface which is closer in style to other OCaml
libraries. *)
module Plot = struct
let ( |? ) o x_default = Option.default x_default o
(** [verify_arg x s] will raise [Invalid_arg s] if [x] is false. Otherwise,
it does nothing. *)
let verify_arg x s = if x then () else (invalid_arg s)
type axis_t = [`x | `y | `z]
type side_t = [`top | `bottom | `left | `right]
type 'a tagged_side_t =
[`top of 'a | `bottom of 'a | `left of 'a | `right of 'a]
type axis_options_t =
[ `axis
| `frame0 | `frame1
| `time
| `fixed_point
| `major_grid | `minor_grid
| `invert_ticks
| `log
| `unconventional_label
| `label
| `custom_label
| `minor_ticks
| `minor_tick_count of int
| `major_ticks
| `major_tick_spacing of float
| `vertical_label ]
type stream_t = {
stream : int;
}
type color_t =
[ `white
| `red
| `yellow
| `green
| `gray
| `blue
| `light_blue
| `purple
| `pink
| `black
| `brown
| `index of int ]
type map_t =
[ `globe
| `usa
| `countries
| `all ]
type pltr_t = float -> float -> float * float
(** Line plotting styles/patterns. *)
type line_style_t =
[ `solid
| `line1 | `line2 | `line3 | `line4
| `line5 | `line6 | `line7 | `line8
| `custom of ((int * int) list) ]
type plot_t =
| Arc of
(color_t * float * float * float * float * float * float * float * bool)
| Axes of
(color_t * axis_options_t list * axis_options_t list * float *
line_style_t * (axis_t -> float -> string) option)
| Contours of (color_t * pltr_t * float array * float array array)
| Image of image_t
| Image_fr of (image_t * (float * float))
| Join of (color_t * float * float * float * float * float * line_style_t)
| Labels of (color_t * string * string * string)
| Lines of
(string option * color_t * float array * float array * float * line_style_t)
| Map of (color_t * map_t * float * float * float * float)
| Points of
(string option * color_t * float array * float array * string * float)
| Polygon of (color_t * float array * float array * bool)
| Shades of (
float * color_t * float * bool * float * float * float * float * float array
array * float array
)
| Text of (color_t * string * float * float * float * float * float)
| Text_outside of
(color_t * string * float tagged_side_t * float * float * bool)
| Set_transform of pltr_t
| Clear_transform
| Set_pltr of pltr_t
| Clear_pltr
| Custom of (unit -> unit)
| List of plot_t list
| Maybe of plot_t option
and image_t = (float * float) option * float * float * float * float * float array array
type plot_device_family_t =
[ `cairo
| `qt
| `core
| `wx ]
type plot_device_t =
[ `pdf of plot_device_family_t
| `png of plot_device_family_t
| `ps of plot_device_family_t
| `svg of plot_device_family_t
| `window of plot_device_family_t
| `prompt
| `stream of int
| `other_device of string ]
type plot_scaling_t = [ `preset | `greedy | `equal | `equal_square ]
type color_palette_t =
| Indexed_palette of string
| Continuous_palette of (string * bool)
let axis_of_axis = function
| PL_X_AXIS -> `x
| PL_Y_AXIS -> `y
| PL_Z_AXIS -> `z
let convert_labelfunc f axis v =
f (axis_of_axis axis) v
let indexed_palette filename = Indexed_palette filename
let continuous_palette ?(interpolate = true) filename =
Continuous_palette (filename, interpolate)
let default_axis_options =
[`frame0; `frame1; `major_ticks; `minor_ticks; `invert_ticks; `label]
let string_ticks_of_axis_options ol =
let tick = ref 0.0 in
let sub = ref 0 in
let translated_list =
List.map (
function
| `axis -> "a"
| `frame0 -> "b"
| `frame1 -> "c"
| `time -> "d"
| `fixed_point -> "f"
| `major_grid -> "g"
| `minor_grid -> "h"
| `invert_ticks -> "i"
| `log -> "l"
| `unconventional_label -> "m"
| `label -> "n"
| `custom_label -> "o"
| `minor_ticks -> "s"
| `minor_tick_count t_sub -> sub := t_sub; "s"
| `major_ticks -> "t"
| `major_tick_spacing t_space -> tick := t_space; "t"
| `vertical_label -> "v"
) ol
in
String.concat "" translated_list, !tick, !sub
(** Convert a color to a (red, green, blue) triple *)
let rgb_of_color = function
| `white -> 255, 255, 255
| `red -> 255, 0, 0
| `yellow -> 255, 255, 0
| `green -> 0, 255, 0
| `gray -> 200, 200, 200
| `blue -> 0, 0, 255
| `light_blue -> 0, 255, 255
| `purple -> 160, 0, 213
| `pink -> 255, 0, 255
| `black -> 0, 0, 0
| `brown -> 165, 42, 42
| `index i -> plgcol0 i
let string_of_map_t = function
| `globe -> "globe"
| `usa -> "usa"
| `countries -> "cglobe"
| `all -> "usaglobe"
(** An internal function for converting a scaling variant value to the
associated PLplot integer value. *)
let int_of_scaling = function
| `preset -> -1
| `greedy -> 0
| `equal -> 1
| `equal_square -> 2
(** Get the suffix string which matches the given device family *)
let string_of_device_family = function
| `cairo -> "cairo"
| `qt -> "qt"
| `core -> ""
| `wx -> ""
(** Returns the string to pass to plsdev and a boolean value indicating if
the device is interactive or not. *)
let devstring_of_plot_device = function
| `prompt -> "", false
| `stream _ -> invalid_arg "External stream"
| `other_device s -> s, false
| `pdf family -> "pdf" ^ string_of_device_family family, false
| `png family -> "png" ^ string_of_device_family family , false
| `ps family -> "ps" ^ string_of_device_family family, false
| `svg family -> "svg" ^ string_of_device_family family, false
| `window family -> (
match family with
| `cairo -> "xcairo"
| `qt -> "qtwidget"
| `core -> "xwin"
| `wx -> "wxwidgets"
), true
let recommended_extension = function
| `png _ -> ".png"
| `ps _ -> ".ps"
| `pdf _ -> ".pdf"
| `svg _ -> ".svg"
| `window _ -> invalid_arg "interactive plot device, no extension"
| `stream _ -> invalid_arg "external stream, unknown extension"
| `other_device _ -> invalid_arg "other device, unknown extension"
| `prompt -> invalid_arg "user prompted for device, unknown extension"
(** Make a new stream, without disturbing the current plot state. *)
let make_stream ?stream () =
let this_stream =
match stream with
| None ->
let old_stream = plgstrm () in
let new_stream = plmkstrm () in
plsstrm old_stream;
new_stream
| Some s -> s
in
{ stream = this_stream }
(** [with_stream ?stream f] calls [f ()] with [stream] as the active
plotting stream if [stream] is present. Otherwise it just calls
[f ()]. *)
let with_stream ?stream f =
match stream with
| None -> f ()
| Some s ->
let old_stream = plgstrm () in
plsstrm s.stream;
let result = f () in
plsstrm old_stream;
result
(** Get the integer representation of the line style for use with pllsty *)
let int_of_line_style = function
| `solid -> 1
| `line1 -> 1
| `line2 -> 2
| `line3 -> 3
| `line4 -> 4
| `line5 -> 5
| `line6 -> 6
| `line7 -> 7
| `line8 -> 8
| `custom _ -> assert false
(** Set the line drawing style *)
let set_line_style ?stream style =
with_stream ?stream (
fun () ->
match style with
| `custom l ->
let marks, spaces = List.split l in
let marks = Array.of_list marks in
let spaces = Array.of_list spaces in
plstyl marks spaces
| s -> pllsty (int_of_line_style s)
)
(** NOTE that these are for the ALTERNATE color palette, not the DEFAULT
color palette. *)
let int_of_color = function
| `white -> 0
| `red -> 3
| `yellow -> 13
| `green -> 12
| `gray -> 10
| `blue -> 2
| `light_blue -> 11
| `purple -> 15
| `pink -> 14
| `black -> 1
| `brown -> 4
| `index i -> i
(** Set the plotting color (color scale 0). NOTE that these are for the
ALTERNATE color palette, not the DEFAULT color palette. *)
let set_color ?stream c =
with_stream ?stream (fun () -> plcol0 (int_of_color c))
(** [set_color_scale ?stream ?pos ?alt_hue_path colors] sets the color scale 1 (images
and shade plots) using a linear interpolation between the given list of
colors. If [alt_hue_path] is true then the interpolation of any segment
uses the alternative hue path which always includes the hue = 0 point. *)
let set_color_scale ?stream ?pos ?alt_hue_path colors =
let cs = Array.map rgb_of_color colors in
let r, g, b =
Array.map (fun (r, _, _) -> float_of_int r /. 255.0) cs,
Array.map (fun (_, g, _) -> float_of_int g /. 255.0) cs,
Array.map (fun (_, _, b) -> float_of_int b /. 255.0) cs
in
let positions = pos |? Array_ext.range ~n:(Array.length cs) 0.0 1.0 in
with_stream ?stream (fun () -> plscmap1l true positions r g b alt_hue_path);
()
(** Start a new page *)
let start_page ?stream (x0, y0) (x1, y1) axis_scaling =
with_stream ?stream (
fun () ->
set_color `black;
plenv x0 x1 y0 y1 (int_of_scaling axis_scaling) (-2);
)
(** Load a color palette from a file on disk *)
let load_palette ?stream which =
with_stream ?stream (
fun () ->
match which with
| Indexed_palette file -> plspal0 file
| Continuous_palette (file, segmented) -> plspal1 file segmented
)
(** Create a new plot instance *)
let make ?stream ?filename ?size ?pre device =
let stream, init =
match stream with
| Some s -> s, true
| None -> begin
match device with
| `stream stream -> make_stream ~stream (), false
| _ -> make_stream (), true
end
in
if init then with_stream ~stream (
fun () ->
let dev, is_interactive = devstring_of_plot_device device in
Option.may (
fun name_base ->
plsfnam (
name_base ^ (
if is_interactive then ""
else (
let extension = recommended_extension device in
if Filename.check_suffix name_base extension then ""
else extension
)
)
);
) filename;
Option.may (
fun (x, y) ->
let dim_string = sprintf "%dx%d" x y in
ignore (plsetopt "geometry" dim_string)
) size;
plsdev dev;
Option.may (fun f -> f ()) pre;
plinit ();
);
stream
(** Create a new plot instance and initialize it. *)
let init ?filename ?size ?pages ?pre (x0, y0) (x1, y1) axis_scaling device =
let stream = make ?filename ?size ?pre device in
Option.may (fun (x, y) -> with_stream ~stream (fun () -> plssub x y)) pages;
start_page ~stream (x0, y0) (x1, y1) axis_scaling;
stream
(** [make_stream_active stream] makes [stream] the active plot stream. If
there is another active plot stream its identity is not saved. *)
let make_stream_active ~stream = plsstrm stream.stream
(** {3 Simplified plotting interface} *)
(** [arc ?fill color x y a b angle1 angle2 rotation] *)
let arc ?(fill = false) color x y a b angle1 angle2 rotation =
Arc (color, x, y, a, b, angle1, angle2, rotation, fill)
(** [axes ?color ?style ?width xopt yopt] *)
let axes ?(color = `black) ?(style = `solid) ?(width = 1.0) ?labelfunc xopt yopt =
Axes (color, xopt, yopt, width, style, labelfunc)
(** Default axes *)
let default_axes = axes default_axis_options default_axis_options
(** [circle ?fill color x y r] - A special case of [arc]. *)
let circle ?fill color x y r = arc ?fill color x y r r 0.0 360.0 0.0
(** [contours color pltr contours data] *)
let contours color pltr contours data =
Contours (color, pltr, contours, data)
(** [image ?range sw ne image] *)
let image ?range (x0, y0) (x1, y1) data = Image (range, x0, y0, x1, y1, data)
(** [imagefr ?range ~scale sw ne image] *)
let imagefr ?range ~scale (x0, y0) (x1, y1) data =
Image_fr ((range, x0, y0, x1, y1, data), scale)
(** [join color (x0, y0) (x1, y1)] *)
let join ?style ?width color (x0, y0) (x1, y1) =
Join (color, x0, y0, x1, y1, width |? 1.0, style |? `solid)
(** [label x y title] labels the axes and adds plot title *)
let label ?(color = `black) x y title =
Labels (color, x, y, title)
(** [lines ?label color xs ys] *)
let lines ?label ?style ?width color xs ys =
Lines (label, color, xs, ys, width |? 1.0, style |? `solid)
(** [map ?sw ?ne color outline] *)
let map ?sw ?ne color outline =
let x0, y0 = sw |? (-180.0, -90.0) in
let x1, y1 = ne |? (180.0, 90.0) in
Map (color, outline, x0, y0, x1, y1)
(** [points ?label ?scale color xs ys] *)
let points ?label ?symbol ?scale color xs ys =
Points (label, color, xs, ys, symbol |? "#(135)", scale |? 1.0)
(** [polygon ?fill color xs ys fill] *)
let polygon ?(fill = false) color xs ys = Polygon (color, xs, ys, fill)
(** [rectangle ?fill color (x0, y0) (x1, y1)] *)
let rectangle ?(fill = false) color (x0, y0) (x1, y1) =
polygon ~fill color [|x0; x1; x1; x0; x0|] [|y0; y0; y1; y1; y0|]
(** [shades ?fill_width ?contour ?rect (x0, y0) (x1, y1) data] *)
let shades ?fill_width ?contour ?(rect = true)
(x0, y0) (x1, y1) contours data =
let cont_color, cont_width =
contour |? (`index 0, 0.0)
in
Shades (
fill_width |? 1.0, cont_color, cont_width, rect, x0, y0, x1, y1,
data, contours
)
(** [text ?dx ?dy ?just ?color s x y] *)
let text ?(dx = 0.0) ?(dy = 0.0) ?(just = 0.5) color x y s =
Text (color, s, x, y, dx, dy, just)
(** [text_outside ?just side displacement s] *)
let text_outside ?(just = 0.5) ?(perp = false) color side displacement s =
Text_outside (color, s, side, displacement, just, perp)
(** [func ?point ?step color f (min, max)] plots the function [f] from
[x = min] to [x = max]. [step] can be used to tighten or coarsen the
sampling of plot points. *)
let func ?symbol ?step color f (min, max) =
let step =
match step with
| None -> (max -. min) /. 100.0
| Some s -> s
in
let xs =
Array_ext.range ~n:(int_of_float ((max -. min) /. step) + 1) min max
in
let ys = Array.map f xs in
match symbol with
| Some s -> points ~symbol:s color xs ys
| None -> lines color xs ys
(** [transform f] *)
let transform f = Set_transform f
(** [clear_transform] *)
let clear_transform = Clear_transform
(** [pltr f] *)
let pltr f = Set_pltr f
(** [clear_pltr] *)
let clear_pltr = Clear_pltr
(** [custom f] *)
let custom f = Custom f
(** [list l] *)
let list l = List l
(** [maybe x] *)
let maybe x = Maybe x
(** Get the font character height in plot world coordinates *)
let character_height ?stream () =
with_stream ?stream (
fun () ->
let (_, char_height_mm) = plgchr () in
let (_, _, vymin, vymax) = plgvpd () in
let vy = vymax -. vymin in
let (_, _, mymin, mymax) = plgspa () in
let mm_y = mymax -. mymin in
let world_height_mm = (mm_y *. vy) in
let char_height_norm = char_height_mm /. world_height_mm in
let (_, _, wymin, wymax) = plgvpw () in
let world_y = wymax -. wymin in
char_height_norm *. world_y
)
type legend_entry_t =
| No_legend (** An empty entry *)
| Box_legend of (int * int * float * float * int * string)
| Line_legend of (int * int * float * int * string)
| Symbol_legend of (int * float * int * string * int * string)
let opt_of_entry = function
| No_legend -> PL_LEGEND_NONE
| Box_legend _ -> PL_LEGEND_COLOR_BOX
| Line_legend _ -> PL_LEGEND_LINE
| Symbol_legend _ -> PL_LEGEND_SYMBOL
type 'a layout_t =
| Row_major of 'a
| Column_major of 'a
let no_legend = No_legend
let box_legend ?(pattern = 0) ?(scale = 1.0) ?(line_width = 1.0)
?(label_color = `black) ~label color =
let label_color = int_of_color label_color in
let color = int_of_color color in
Box_legend (color, pattern, scale, line_width, label_color, label)
let line_legend ?(style = 1) ?(width = 1.0) ?(label_color = `black) ~label color =
let label_color = int_of_color label_color in
let color = int_of_color color in
Line_legend (color, style, width, label_color, label)
let symbol_legend ?(scale = 1.0) ?(number = 3) ?(label_color = `black) ~label
color symbol =
let label_color = int_of_color label_color in
let color = int_of_color color in
Symbol_legend (color, scale, number, symbol, label_color, label)
let row_major x y = Row_major (x, y)
let column_major x y = Column_major (x, y)
type position_t =
| Viewport of side_t option * side_t option * float * float * bool option
| Subpage of side_t option * side_t option * float * float * bool option
let viewport_pos ?side1 ?side2 ?inside x y =
Viewport (side1, side2, x, y, inside)
let subpage_pos ?side1 ?side2 ?inside x y =
Subpage (side1, side2, x, y, inside)
let pos_opt_of_side = function
| `right -> PL_POSITION_RIGHT
| `left -> PL_POSITION_LEFT
| `top -> PL_POSITION_TOP
| `bottom -> PL_POSITION_BOTTOM
(** Convert a position_t to a low-level position definition. *)
let convert_position pos_maybe =
match pos_maybe with
| None -> 0.0, 0.0, []
| Some pos -> begin
let opt_list side1 side2 inside =
let side1_opt =
Option.map_default (fun s -> [pos_opt_of_side s]) [] side1
in
let side2_opt =
Option.map_default (fun s -> [pos_opt_of_side s]) [] side2
in
let inside_opt =
Option.map_default (
fun b ->
if b then [PL_POSITION_INSIDE] else [PL_POSITION_OUTSIDE]
) [] inside
in
List.concat [side1_opt; side2_opt; inside_opt]
in
match pos with
| Viewport (side1, side2, x, y, inside) ->
x, y, PL_POSITION_VIEWPORT :: opt_list side1 side2 inside
| Subpage (side1, side2, x, y, inside) ->
x, y, PL_POSITION_SUBPAGE :: opt_list side1 side2 inside
end
(** Convert a backgroun color into a legend/colorbar-ready definition *)
let convert_bg bg opt =
match bg with
| Some color -> int_of_color color, [opt]
| None -> 0, []
(** Convert a bounding box definition into a legend/colorbar-ready
definition *)
let convert_bb bb opt =
match bb with
| Some (color, style) -> int_of_color color, int_of_line_style style, [opt]
| None -> 0, 0, []
(** Set the drawing color in [f], and restore the previous drawing color
when [f] is complete. *)
let set_color_in ?stream c f =
with_stream ?stream (
fun () ->
let old_color = plg_current_col0 () in
set_color c;
f ();
plcol0 old_color;
()
)
let legend ?pos ?(plot_width = 0.1) ?bg ?bb ?layout ?color
?(text_offset = 1.0) ?(text_scale = 1.0) ?(text_spacing = 2.0)
?(text_justification = 1.0)
?(text_left = false)
entries =
let legend_x, legend_y, pos_opt = convert_position pos in
let bg, bg_opt = convert_bg bg PL_LEGEND_BACKGROUND in
let bb, bb_style, bb_opt = convert_bb bb PL_LEGEND_BOUNDING_BOX in
let rows, columns, layout_opt =
match layout with
| Some l ->
begin
match l with
| Row_major (x, y) -> x, y, [PL_LEGEND_ROW_MAJOR]
| Column_major (x, y) -> x, y, []
end
| None ->
0, 0, []
in
let color = color |? `black in
let text_left_opt =
if text_left then [PL_LEGEND_TEXT_LEFT]
else []
in
let opt =
List.flatten [
bg_opt;
bb_opt;
layout_opt;
text_left_opt;
]
in
let entries = Array.of_list entries in
let entry_opts = Array.map (List.map opt_of_entry) entries in
let n_entries = Array.length entries in
let text_colors = Array.make n_entries 0 in
let text = Array.make n_entries "" in
let box_colors = Array.make n_entries 0 in
let box_patterns = Array.make n_entries 0 in
let box_scales = Array.make n_entries 0.0 in
let box_line_widths = Array.make n_entries 0.0 in
let line_colors = Array.make n_entries 0 in
let line_styles = Array.make n_entries 0 in
let line_widths = Array.make n_entries 0.0 in
let symbol_colors = Array.make n_entries 0 in
let symbol_scales = Array.make n_entries 0.0 in
let symbol_numbers = Array.make n_entries 0 in
let symbols = Array.make n_entries "" in
for i = 0 to n_entries - 1 do
List.iter (
fun entry ->
match entry with
| No_legend ->
()
| Box_legend (color, pattern, scale, line_width, label_color, label) ->
box_colors.(i) <- color;
box_patterns.(i) <- pattern;
box_scales.(i) <- scale;
box_line_widths.(i) <- line_width;
text_colors.(i) <- label_color;
text.(i) <- label;
| Line_legend (color, style, width, label_color, label) ->
line_colors.(i) <- color;
line_styles.(i) <- style;
line_widths.(i) <- width;
text_colors.(i) <- label_color;
text.(i) <- label;
| Symbol_legend (color, scale, number, symbol, label_color, label) ->
symbol_colors.(i) <- color;
symbol_scales.(i) <- scale;
symbol_numbers.(i) <- number;
symbols.(i) <- symbol;
text_colors.(i) <- label_color;
text.(i) <- label;
) entries.(i)
done;
custom (
fun () ->
set_color_in color (
fun () ->
ignore (
pllegend opt pos_opt legend_x legend_y plot_width bg bb bb_style
rows columns
entry_opts
text_offset text_scale text_spacing text_justification text_colors text
box_colors box_patterns box_scales box_line_widths
line_colors line_styles line_widths
symbol_colors symbol_scales symbol_numbers symbols
)
)
)
type colorbar_axis_t = {
axis_def : axis_options_t list;
axis_values : float array;
}
type colorbar_kind_t =
| Gradient_colorbar of colorbar_axis_t
| Image_colorbar of colorbar_axis_t
| Shade_colorbar of (bool * colorbar_axis_t)
let default_colorbar_axis =
[`frame0; `frame1; `invert_ticks; `unconventional_label; `major_ticks; `vertical_label]
let colorbar_axis ?(axis = default_colorbar_axis) vs =
{ axis_def = axis; axis_values = vs }
let gradient_colorbar ?axis vs =
Gradient_colorbar (colorbar_axis ?axis vs)
let image_colorbar ?axis vs =
Image_colorbar (colorbar_axis ?axis vs)
let shade_colorbar ?(custom = true) ?axis vs =
Shade_colorbar (custom, colorbar_axis ?axis vs)
let colorbar ?pos ?bg ?bb ?cap ?contour ?orient ?axis ?label ?color ?scale kind =
let colorbar_x, colorbar_y, pos_opt = convert_position pos in
let bg, bg_opt = convert_bg bg PL_COLORBAR_BACKGROUND in
let bb, bb_style, bb_opt = convert_bb bb PL_COLORBAR_BOUNDING_BOX in
let cap_low_color, cap_high_color, cap_opt =
match cap with
| Some (Some l, Some h) -> l, h, [PL_COLORBAR_CAP_LOW; PL_COLORBAR_CAP_HIGH]
| Some (Some l, None) -> l, 0.0, [PL_COLORBAR_CAP_LOW]
| Some (None, Some h) -> 0.0, h, [PL_COLORBAR_CAP_HIGH]
| Some (None, None)
| None -> 0.0, 0.0, []
in
let cont_color, cont_width =
match contour with
| None -> 0, 0.0
| Some (col, wid) -> int_of_color col, wid
in
let x_length, y_length, orient_opt =
match orient with
| Some o -> begin
match o with
| `right (l, w) -> w, l, [PL_COLORBAR_ORIENT_RIGHT]
| `left (l, w) -> w, l, [PL_COLORBAR_ORIENT_LEFT]
| `top (l, w) -> l, w, [PL_COLORBAR_ORIENT_TOP]
| `bottom (l, w) -> l, w, [PL_COLORBAR_ORIENT_BOTTOM]
end
| None ->
let default_length = 0.75 in
let default_width = 0.05 in
if
List.mem PL_POSITION_LEFT pos_opt ||
List.mem PL_POSITION_RIGHT pos_opt
then
default_width, default_length, []
else if
List.mem PL_POSITION_TOP pos_opt ||
List.mem PL_POSITION_BOTTOM pos_opt
then
default_length, default_width, []
else
default_width, default_length, []
in
let = axis |? [] in
let labels, label_opts =
let result =
match label with
| Some l -> begin
List.map (
fun p ->
match p with
| `right l -> l, [PL_COLORBAR_LABEL_RIGHT]
| `left l -> l, [PL_COLORBAR_LABEL_LEFT]
| `top l -> l, [PL_COLORBAR_LABEL_TOP]
| `bottom l -> l, [PL_COLORBAR_LABEL_BOTTOM]
) l
end
| None -> ["", []]
in
List.split result
in
let labels = Array.of_list labels in
let label_opts = Array.of_list label_opts in
let color = color |? `black in
let { axis_def = main_axis; axis_values = values}, kind_opt =
match kind with
| Gradient_colorbar a -> a, [PL_COLORBAR_GRADIENT]
| Image_colorbar a -> a, [PL_COLORBAR_IMAGE]
| Shade_colorbar (custom, a) ->
a, (
PL_COLORBAR_SHADE ::
if custom then [PL_COLORBAR_SHADE_LABEL] else []
)
in
let main_axis_string, tick_spacing, sub_ticks =
string_ticks_of_axis_options main_axis
in
let , , , =
let axes =
Array.of_list (
List.map (
fun { axis_def; axis_values } ->
let str, tick_spacing, sub_ticks =
string_ticks_of_axis_options axis_def
in
str, tick_spacing, sub_ticks, axis_values
) extra_axes
)
in
Array.to_list (Array.map (fun (x, _, _, _) -> x) axes),
Array.to_list (Array.map (fun (_, x, _, _) -> x) axes),
Array.to_list (Array.map (fun (_, _, x, _) -> x) axes),
Array.to_list (Array.map (fun (_, _, _, x) -> x) axes)
in
let axis_strings =
Array.of_list (main_axis_string :: extra_axis_strings)
in
let tick_spacing =
Array.of_list (tick_spacing :: extra_axis_tick_spacing)
in
let sub_ticks =
Array.of_list (sub_ticks :: extra_axis_sub_ticks)
in
let values =
Array.of_list (values :: extra_values)
in
let opt =
List.concat [bg_opt; bb_opt; cap_opt; orient_opt; kind_opt]
in
custom (
fun () ->
Option.may (fun s -> plsmaj 0.0 s; plsmin 0.0 s; plschr 0.0 s) scale;
set_color_in color (
fun () ->
ignore (
plcolorbar opt pos_opt colorbar_x colorbar_y x_length y_length
bg bb bb_style
cap_low_color cap_high_color
cont_color cont_width
label_opts labels
axis_strings tick_spacing sub_ticks values
)
);
Option.may (fun _ -> plsmaj 0.0 1.0; plsmin 0.0 1.0; plschr 0.0 1.0) scale;
)
(** An easier to deduce alternative to {Plplot.plbox} *)
let plot_axes ?stream xoptions yoptions =
let xopt, xtick, xsub = string_ticks_of_axis_options xoptions in
let yopt, ytick, ysub = string_ticks_of_axis_options yoptions in
let yopt = yopt ^ "v" in
with_stream ?stream (fun () -> plbox xopt xtick xsub yopt ytick ysub)
(** [plot stream l] plots the data in [l] to the plot [stream]. *)
let rec plot ?stream plottable_list =
let plot_arc (color, x, y, a, b, angle1, angle2, rotate, fill) =
set_color_in color (
fun () -> plarc x y a b angle1 angle2 rotate fill;
)
in
let plot_axes (color, xopt, yopt, width, style, labelfunc) =
set_color_in color (
fun () ->
let old_width = plgwidth () in
plwidth width;
set_line_style style;
Option.may (
fun f -> plslabelfunc (convert_labelfunc f)
) labelfunc;
plot_axes xopt yopt;
Option.may (fun _ -> plunset_labelfunc ()) labelfunc;
set_line_style `solid;
plwidth old_width;
)
in
let plot_contours (color, pltr, contours, data) =
set_color_in color (
fun () ->
plset_pltr pltr;
let ixmax, iymax = Array_ext.matrix_dims data in
plcont data 1 ixmax 1 iymax contours;
plunset_pltr ();
)
in
let plot_image (range, x0, y0, x1, y1, image) =
let range_min, range_max = range |? (0.0, 0.0) in
plimage image
x0 x1 y0 y1 range_min range_max x0 x1 y0 y1;
()
in
let plot_imagefr (range, x0, y0, x1, y1, image) scale =
let range_min, range_max = range |? (0.0, 0.0) in
let scale_min, scale_max = scale in
plimagefr image
x0 x1 y0 y1 range_min range_max scale_min scale_max;
()
in
let plot_join (color, x0, y0, x1, y1, width, style) =
set_color_in color (
fun () ->
let old_width = plgwidth () in
plwidth width;
set_line_style style;
pljoin x0 y0 x1 y1;
set_line_style `solid;
plwidth old_width;
)
in
let plot_labels (color, x, y, title) =
set_color_in color (
fun () -> pllab x y title
)
in
let plot_lines (_label, color, xs, ys, width, style) =
set_color_in color (
fun () ->
let old_width = plgwidth () in
plwidth width;
set_line_style style;
plline xs ys;
set_line_style `solid;
plwidth old_width;
)
in
let plot_map (color, outline, x0, y0, x1, y1) =
set_color_in color (
fun () ->
plmap (string_of_map_t outline) x0 x1 y0 y1;
)
in
let plot_points (_label, color, xs, ys, symbol, scale) =
set_color_in color (
fun () ->
plschr 0.0 scale;
plstring xs ys symbol;
plschr 0.0 1.0;
)
in
let plot_polygon (color, xs, ys, fill) =
let x_len = Array.length xs in
let y_len = Array.length ys in
verify_arg (x_len = y_len)
"plot_polygon: must provide same number of X and Y coordinates";
set_color_in color (
fun () ->
if fill then (
plfill xs ys;
)
else (
let xs' =
Array.init (x_len + 1)
(fun i -> if i < x_len - 1 then xs.(i) else xs.(0))
in
let ys' =
Array.init (y_len + 1)
(fun i -> if i < y_len - 1 then ys.(i) else ys.(0))
in
plline xs' ys';
)
)
in
let plot_shades
(fill_width, cont_color, cont_width, rect, x0, y0, x1, y1, data, contours)
=
let cont_color = int_of_color cont_color in
plshades data x0 x1 y0 y1 contours fill_width cont_color cont_width rect
in
let plot_text (color, s, x, y, dx, dy, just) =
set_color_in color (fun () -> plptex x y dx dy just s)
in
let plot_text_outside (color, s, side, displacement, just, perp) =
let side_string, position =
match side with
| `right p -> "r", p
| `left p -> "l", p
| `top p -> "t", p
| `bottom p -> "b", p
in
let side_string = side_string ^ if perp then "v" else "" in
set_color_in color
(fun () -> plmtex side_string displacement position just s)
in
let rec one_plot p =
match p with
| Arc a -> plot_arc a
| Axes ax -> plot_axes ax
| Contours c -> plot_contours c
| Image i -> plot_image i
| Image_fr (i, scale) -> plot_imagefr i scale
| Join j -> plot_join j
| Labels lab -> plot_labels lab
| Lines l -> plot_lines l
| Map m -> plot_map m
| Points p -> plot_points p
| Polygon poly -> plot_polygon poly
| Shades s -> plot_shades s
| Text t -> plot_text t
| Text_outside t_o -> plot_text_outside t_o
| Set_transform transform -> plstransform transform
| Clear_transform -> plunset_transform ()
| Set_pltr pltr -> plset_pltr pltr
| Clear_pltr -> plunset_pltr ()
| Custom f -> f ()
| List l -> plot l
| Maybe None -> ()
| Maybe (Some m_p) -> one_plot m_p
in
List.iter (
fun plottable -> with_stream ?stream (fun () -> one_plot plottable)
) plottable_list
(** Finish the current page, start a new one (alias for {!start_page}). *)
let next_page = start_page
(** End the current plot stream *)
let end_stream ?stream () =
with_stream ?stream plend1
(** Finish up the plot by plotting axes and ending the stream. *)
let finish ?stream () =
plot ?stream [default_axes];
end_stream ?stream ()
end
(** The [Quick_plot] module is intended to be used for quick, "throw-away"
plots. It's is likely to be most useful from the toplevel. *)
module Quick_plot = struct
open Plot
let special_float x =
match classify_float x with
| FP_normal
| FP_subnormal
| FP_zero -> false
| FP_infinite
| FP_nan -> true
let safe_array_reduce f a =
let n =
Array_ext.reduce (
fun accu x ->
if special_float x then
accu
else if special_float accu then
x
else
f accu x
) a
in
verify_arg (not (special_float n)) "No non-special values";
n
let extents xs_list ys_list =
List.fold_left min infinity (List.map (safe_array_reduce min) xs_list),
List.fold_left max neg_infinity (List.map (safe_array_reduce max) xs_list),
List.fold_left min infinity (List.map (safe_array_reduce min) ys_list),
List.fold_left max neg_infinity (List.map (safe_array_reduce max) ys_list)
let maybe_log log =
let x_axis = default_axis_options in
let y_axis = default_axis_options in
Option.map_default (
fun (x_log, y_log) ->
(if x_log then `log :: x_axis else x_axis),
(if y_log then `log :: y_axis else y_axis)
) (x_axis, y_axis) log
let maybe_line_legend names colors =
maybe (
Option.map (
fun names' ->
let entries =
List.map2 (
fun color label -> [line_legend ~label color]
) (Array.to_list colors) names'
in
legend entries
) names
)
let maybe_symbol_legend names colors symbols =
maybe (
Option.map (
fun names' ->
let entries =
Array.mapi (
fun i label ->
[symbol_legend ~label colors.(i) symbols.(i)]
) (Array.of_list names')
in
legend (Array.to_list entries)
) names
)
(** [points [xs, ys; ...] plots the points described by the coordinates [xs]
and [ys]. *)
let points ?filename ?size ?(device = `window `cairo) ?labels ?names ?log xs_ys_list =
let xs_list, ys_list = List.split xs_ys_list in
let xmin, xmax, ymin, ymax = extents xs_list ys_list in
let ys_array = Array.of_list ys_list in
let stream =
init ?filename ?size (xmin, ymin) (xmax, ymax) `greedy device
in
let colors = Array.mapi (fun i _ -> `index (i + 1)) ys_array in
let symbols =
Array.init (Array.length ys_array) (fun i -> sprintf "#(%03d)" (i + 135))
in
let plottable_points =
Array.to_list (
Array.mapi (
fun i xs ->
points ~symbol:symbols.(i) colors.(i)
xs ys_array.(i)
) (Array.of_list xs_list)
)
in
let x_axis, y_axis = maybe_log log in
plot ~stream [
list plottable_points;
maybe_symbol_legend names colors symbols;
axes x_axis y_axis;
maybe (Option.map (fun (x, y, t) -> label x y t) labels);
];
end_stream ~stream ();
()
(** [lines [xs, ys; ...] plots the line segments described by the coordinates
[xs] and [ys]. *)
let lines
?filename ?size ?(device = `window `cairo) ?labels ?names ?log
xs_ys_list =
let xs_list, ys_list = List.split xs_ys_list in
let xmin, xmax, ymin, ymax = extents xs_list ys_list in
let ys_array = Array.of_list ys_list in
let stream = init ?filename ?size (xmin, ymin) (xmax, ymax) `greedy device in
let colors = Array.mapi (fun i _ -> `index (i + 1)) ys_array in
let plottable_lines =
Array.to_list (
Array.mapi (
fun i xs -> lines colors.(i) xs ys_array.(i)
) (Array.of_list xs_list)
)
in
let x_axis, y_axis = maybe_log log in
plot ~stream [
list plottable_lines;
maybe_line_legend names colors;
axes x_axis y_axis;
maybe (Option.map (fun (x, y, t) -> label x y t) labels);
];
end_stream ~stream ();
()
(** [image ?log m] plots the image [m] with a matching colorbar. If [log] is
true then the data in [m] are assumed to be log10(x) values. *)
let image ?filename ?size ?(device = `window `cairo) ?labels ?log ?palette m =
let m_max, m_min = plMinMax2dGrid m in
let xmin, ymin = 0.0, 0.0 in
let xmax, ymax = Array_ext.matrix_dims m in
let xmax, ymax = float_of_int xmax, float_of_int ymax in
let axis =
Option.map_default (
fun l ->
if l then
`log :: default_colorbar_axis
else
default_colorbar_axis
) default_colorbar_axis log
in
let stream =
init ?filename ?size (xmin, ymin) (xmax, ymax) `equal_square device
in
Option.may (load_palette ~stream) palette;
plot ~stream [
image (xmin, ymin) (xmax, ymax) m;
default_axes;
maybe (Option.map (fun (x, y, t) -> label x y t) labels);
colorbar ~scale:0.75 ~pos:(viewport_pos 0.05 0.0)
(image_colorbar ~axis [|m_min; m_max|]);
];
end_stream ~stream ();
()
(** [func ?point ?step fs (min, max)] plots the functions [fs] from [x = min]
to [x = max]. [step] can be used to tighten or coarsen the sampling of
plot points. *)
let func
?filename ?size ?(device = `window `cairo) ?labels ?names ?symbol ?step
fs (xmin, xmax) =
let fs_array = Array.of_list fs in
let colors = Array.mapi (fun i _ -> `index (i + 1)) fs_array in
let plot_content =
Array.to_list (
Array.mapi (
fun i f ->
func ?symbol ?step colors.(i) f (xmin, xmax)
) fs_array
)
in
let ys =
Array.of_list (
List.map (
function
| Lines (_, _, _, y, _, _)
| Points (_, _, _, y, _, _) -> y
| _ -> invalid_arg "Invalid function output"
) plot_content
)
in
let ymax, ymin = plMinMax2dGrid ys in
let stream =
init ?filename ?size (xmin, ymin) (xmax, ymax) `greedy device
in
plot ~stream [
list plot_content;
maybe_line_legend names colors;
default_axes;
maybe (Option.map (fun (x, y, t) -> label x y t) labels);
];
end_stream ~stream ();
()
let shades ?filename ?size ?(device = `window `cairo) ?labels ?log ?palette
?contours m =
let xmin, ymin = 0.0, 0.0 in
let xmax, ymax = Array_ext.matrix_dims m in
let xmax, ymax = float_of_int xmax, float_of_int ymax in
let axis =
Option.map_default (
fun l ->
if l then
`log :: default_colorbar_axis
else
default_colorbar_axis
) default_colorbar_axis log
in
let stream =
init ?filename ?size (xmin, ymin) (xmax, ymax) `equal_square device
in
Option.may (load_palette ~stream) palette;
let contours =
contours |? (
let m_max, m_min = plMinMax2dGrid m in
Array_ext.range ~n:11 m_min m_max
)
in
plot ~stream [
shades (xmin, ymin) (xmax, ymax) contours m;
default_axes;
maybe (Option.map (fun (x, y, t) -> label x y t) labels);
colorbar ~scale:0.75 ~pos:(viewport_pos 0.05 0.0)
(shade_colorbar ~axis contours);
];
end_stream ~stream ();
()
end