Home
last modified time | relevance | path

Searched refs:contourf (Results 1 – 25 of 256) sorted by relevance

1234567891011

/dports/math/octave/octave-6.4.0/scripts/plot/draw/
H A Dcontourf.m27 ## @deftypefn {} {} contourf (@var{z})
28 ## @deftypefnx {} {} contourf (@var{z}, @var{vn})
29 ## @deftypefnx {} {} contourf (@var{x}, @var{y}, @var{z})
31 ## @deftypefnx {} {} contourf (@dots{}, @var{style})
32 ## @deftypefnx {} {} contourf (@var{hax}, @dots{})
33 ## @deftypefnx {} {[@var{c}, @var{h}] =} contourf (@dots{})
61 ## contourf (x, y, z, -7:9)
67 function [c, h] = contourf (varargin) function
103 %! contourf (x, y, z, -7:9);
112 %! contourf (X, Y, abs (Z), 10);
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphics/tests/nonreg_tests/
H A Dbug_10797.tst15 // contour, contour2d, contourf did not check input arguments
45 …msprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 1);
46 assert_checkerror ("contourf(''X'', Y, Z, NZ , rect);", msgerr);
47 …msprintf(gettext("%s: Wrong size for input argument #%d: Real vector expected.\n"), "contourf", 1);
48 assert_checkerror ("contourf(1, Y, Z, NZ , rect);", msgerr);
49 …msprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 2);
50 assert_checkerror ("contourf(X, ''Y'', Z, NZ , rect);", msgerr);
51 …msprintf(gettext("%s: Wrong size for input argument #%d: Real vector expected.\n"), "contourf", 2);
52 assert_checkerror ("contourf(X, 1, Z, NZ , rect);", msgerr);
53 …msprintf(gettext("%s: Wrong type for input argument #%d: Real matrix expected.\n"), "contourf", 3);
[all …]
H A Dbug_10797.dia.ref15 // contour, contour2d, contourf did not check input arguments
41 …msprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 1);
42 assert_checkerror ("contourf(''X'', Y, Z, NZ , rect);", msgerr);
43 …msprintf(gettext("%s: Wrong size for input argument #%d: Real vector expected.\n"), "contourf", 1);
44 assert_checkerror ("contourf(1, Y, Z, NZ , rect);", msgerr);
45 …msprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 2);
46 assert_checkerror ("contourf(X, ''Y'', Z, NZ , rect);", msgerr);
47 …msprintf(gettext("%s: Wrong size for input argument #%d: Real vector expected.\n"), "contourf", 2);
48 assert_checkerror ("contourf(X, 1, Z, NZ , rect);", msgerr);
49 …msprintf(gettext("%s: Wrong type for input argument #%d: Real matrix expected.\n"), "contourf", 3);
[all …]
H A Dbug_9455.tst16 // The contourf and contourf 2 demos displayed unwanted dots.
18 contourf();
H A Dbug_9455.dia.ref14 // The contourf and contourf 2 demos displayed unwanted dots.
15 contourf();
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphics/macros/
H A Dcontourf.sci13 function contourf(x, y, z, nv, style, strf, leg, rect, nax)
20 contourf(t,t,m);
58 …sprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 1));
62 …sprintf(gettext("%s: Wrong type for input argument #%d: Real vector expected.\n"), "contourf", 2));
66 …sprintf(gettext("%s: Wrong type for input argument #%d: Real matrix expected.\n"), "contourf", 3));
74 …ror(msprintf(gettext("%s: Wrong type for input argument #%d: String expected.\n"), "contourf", 6));
78 …ror(msprintf(gettext("%s: Wrong type for input argument #%d: String expected.\n"), "contourf", 7));
119 …ror(msprintf(gettext("%s: Wrong size for input argument #%d: string expected.\n"), "contourf", 6));
123 …ror(msprintf(gettext("%s: Wrong size for input argument #%d: string expected.\n"), "contourf", 7));
168 error(msprintf(gettext("%s: Colormap too small"),"contourf"));
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/tests/
H A Dtest_colorbar.py129 plt.contourf(data, levels=levels)
136 plt.contourf(data, levels=levels)
146 color_mappable = plt.contourf(data, levels=levels, extend='both')
148 hatch_mappable = plt.contourf(data_2nd, levels=[1, 2, 3], colors='none',
160 plt.contourf(data, levels=levels)
162 plt.contourf(data, levels=levels)
164 plt.contourf(data, levels=levels)
183 plt.contourf(data, levels=levels)
187 plt.contourf(data, levels=levels)
269 cs = ax.contourf(X, Y, Z, clevs, colors=colors)
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_examples/images_contours_and_fields/
H A Dtriinterp_demo.py42 axs[1].contourf(xi, yi, zi_lin)
48 axs[2].contourf(xi, yi, zi_cubic_geom)
54 axs[3].contourf(xi, yi, zi_cubic_min_E)
77 matplotlib.axes.Axes.contourf
78 matplotlib.pyplot.contourf
H A Dcontourf_hatching.py24 cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'],
34 cs = ax2.contourf(x, y, z, n_levels, colors='none',
56 matplotlib.axes.Axes.contourf
57 matplotlib.pyplot.contourf
H A Dcontourf_demo.py42 CS = ax2.contourf(X, Y, Z, 10, cmap=plt.cm.bone, origin=origin)
66 CS3 = ax2.contourf(X, Y, Z, levels,
102 cs = ax.contourf(X, Y, Z, levels, cmap=cmap, extend=extend, origin=origin)
122 matplotlib.axes.Axes.contourf
123 matplotlib.pyplot.contourf
H A Dcontourf_log.py38 cs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r)
64 matplotlib.axes.Axes.contourf
65 matplotlib.pyplot.contourf
H A Dcontour_corner_mask.py28 cs = ax.contourf(x, y, z, corner_mask=corner_mask)
53 matplotlib.axes.Axes.contourf
54 matplotlib.pyplot.contourf
/dports/math/py-matplotlib2/matplotlib-2.2.4/examples/images_contours_and_fields/
H A Dtriinterp_demo.py42 axs[1].contourf(xi, yi, zi_lin)
48 axs[2].contourf(xi, yi, zi_cubic_geom)
54 axs[3].contourf(xi, yi, zi_cubic_min_E)
77 matplotlib.axes.Axes.contourf
78 matplotlib.pyplot.contourf
H A Dcontourf_hatching.py24 cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'],
34 cs = ax2.contourf(x, y, z, n_levels, colors='none',
56 matplotlib.axes.Axes.contourf
57 matplotlib.pyplot.contourf
H A Dcontourf_demo.py42 CS = ax2.contourf(X, Y, Z, 10, cmap=plt.cm.bone, origin=origin)
66 CS3 = ax2.contourf(X, Y, Z, levels,
102 cs = ax.contourf(X, Y, Z, levels, cmap=cmap, extend=extend, origin=origin)
122 matplotlib.axes.Axes.contourf
123 matplotlib.pyplot.contourf
H A Dcontourf_log.py38 cs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r)
64 matplotlib.axes.Axes.contourf
65 matplotlib.pyplot.contourf
H A Dcontour_corner_mask.py28 cs = ax.contourf(x, y, z, corner_mask=corner_mask)
53 matplotlib.axes.Axes.contourf
54 matplotlib.pyplot.contourf
H A Dpcolormesh_levels.py49 cf = ax1.contourf(x[:-1, :-1] + dx/2.,
72 matplotlib.axes.Axes.contourf
73 matplotlib.pyplot.contourf
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/tests/
H A Dtest_contour.py169 plt.contourf(x, y, z)
175 plt.contourf(x, y, z)
228 plt.contourf(z, corner_mask=corner_mask)
236 plt.contourf(z, [1.0, 0.0])
243 cs = plt.contourf(z, locator=locator)
292 cs_filled = ax2.contourf(x, y, z, zorder=contour_zorder)
326 c1 = ax1.contourf(data,
329 c2 = ax2.contourf(data, levels=levels,
333 c3 = ax3.contourf(data, levels=levels,
373 cs = ax.contourf(z, levels=[2, 4, 6, 10, 20])
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphics/demos/2d_3d_plots/
H A Dcontourf.dem.sce11 demo_viewCode("contourf.dem.sce");
15 my_plot_desc = "contourf";
18 contourf();
/dports/math/mathgl/mathgl-2.5/json/
H A DRotationExample.py13 cset = ax.contourf(X, Y, Z, zdir='z', offset=-100)
14 cset = ax.contourf(X, Y, Z, zdir='x', offset=-40)
15 cset = ax.contourf(X, Y, Z, zdir='y', offset=40)
/dports/math/py-matplotlib2/matplotlib-2.2.4/examples/mplot3d/
H A Dcontourf3d_2.py26 cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)
27 cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)
28 cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_examples/mplot3d/
H A Dcontourf3d_2.py26 cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)
27 cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)
28 cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)
/dports/math/py-matplotlib/matplotlib-3.4.3/examples/mplot3d/
H A Dcontourf3d_2.py25 cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)
26 cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)
27 cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)
/dports/science/py-dipy/dipy-1.4.1/doc/examples/
H A Dreconst_qtdmri.py215 plt.contourf(Delta_ * 1e3, 1e5 * MSD_, D_grid, levels=D_levels, cmap='Greys',
235 plt.contourf(Delta_ * 1e3, 1e5 * MSD_, D_grid, levels=D_levels, cmap='Greys',
275 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,
293 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,
330 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,
348 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,
365 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,
381 plt.contourf(Delta_ * 1e3, RTXP_, D_grid, colors=D_colors, levels=D_levels,

1234567891011