1PLIMAGE(3plplot) PLplot API PLIMAGE(3plplot)
2
3
4
6 plimage - Plot a 2D matrix using cmap1 with automatic color adjustment
7
9 plimage(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, Dxmin, Dx‐
10 max, Dymin, Dymax)
11
13 Plot a 2D matrix using the cmap1 palette. The color scale is automati‐
14 cally adjusted to use the maximum and minimum values in idata as val‐
15 uemin and valuemax in a call to plimagefr(3plplot).
16
17 Redacted form: General: plimage(idata, xmin, xmax, ymin, ymax, zmin,
18 zmax, Dxmin, Dxmax, Dymin, Dymax)
19
20
21 This function is used in example 20.
22
24 idata (PLFLT_MATRIX(3plplot), input)
25 A matrix containing function values to plot. Should have dimen‐
26 sions of nx by ny.
27
28 nx, ny (PLINT(3plplot), input)
29 Dimensions of idata
30
31 xmin, xmax, ymin, ymax (PLFLT(3plplot), input)
32 The x and y index ranges are linearly transformed to these world
33 coordinate ranges such that idata[0][0] corresponds to (xmin,
34 ymin) and idata[nx - 1][ny - 1] corresponds to (xmax, ymax).
35
36 zmin, zmax (PLFLT(3plplot), input)
37 Only data between zmin and zmax (inclusive) will be plotted.
38
39 Dxmin, Dxmax, Dymin, Dymax (PLFLT(3plplot), input)
40 Plot only the window of points whose plot coordinates fall in‐
41 side the window of (Dxmin, Dymin) to (Dxmax, Dymax).
42
43
45 Many developers (who are credited at http://plplot.org/credits.php)
46 have contributed to PLplot over its long history.
47
49 PLplot documentation at http://plplot.org/documentation.php.
50
51
52
53 January, 2023 PLIMAGE(3plplot)