Home
last modified time | relevance | path

Searched refs:meshgrid (Results 1 – 25 of 1034) sorted by relevance

12345678910>>...42

/dports/math/octave-forge-interval/interval-3.2.0/inst/test/
H A Dmeshgrid.tst23 %! [XX, YY] = meshgrid (X);
31 %! [XX, YY] = meshgrid (X, Y);
38 %! [XX, YY, ZZ] = meshgrid (X);
57 %! [XX, YY] = meshgrid (X, Y);
65 %! [XX, YY] = meshgrid (X, Y);
132 %! [XX, YY] = meshgrid (X);
140 %! [XX, YY] = meshgrid (X, Y);
166 %! [XX, YY] = meshgrid (X, Y);
174 %! [XX, YY] = meshgrid (X, Y);
242 %! [XX, YY] = meshgrid (X, Y);
[all …]
/dports/math/octave/octave-6.4.0/scripts/plot/util/
H A Dmeshgrid.m50 ## [@var{X}, @var{Y}] = meshgrid (range, range);
68 function [xx, yy, zz] = meshgrid (x, y, z) function
82 error ("meshgrid: X and Y must be vectors");
91 error ("meshgrid: X, Y, and Z must be vectors");
108 %! [XX, YY, ZZ] = meshgrid (x, y, z);
118 %! [XX, YY] = meshgrid (x, y);
127 %! [XX1, YY1] = meshgrid (x, x);
128 %! [XX2, YY2] = meshgrid (x);
139 %! [XX, YY] = meshgrid (x, y, z);
147 %!error meshgrid ()
[all …]
H A Dndgrid.m40 ## @code{meshgrid} except that the first two dimensions are transposed in
41 ## comparison to @code{meshgrid}. Some core functions expect @code{meshgrid}
44 ## @seealso{meshgrid}
115 %! [XX1, YY1] = meshgrid (x, y);
/dports/math/scilab/scilab-6.1.1/scilab/modules/elementary_functions/macros/
H A Dmeshgrid.sci13 function varargout=meshgrid(varargin)
16 // [X,Y]=meshgrid(x)
17 // [X,Y]=meshgrid(x,y)
18 // [X,Y,Z]=meshgrid(x,y,z)
29 …or(msprintf(gettext("%s: Wrong number of output arguments: At most %d expected.\n"),"meshgrid",3));
31 …ror(msprintf(gettext("%s: Wrong number of input arguments: At most %d expected.\n"),"meshgrid",3));
55 …("%s: Wrong number of output arguments vs. input arguments: Same number expected.\n"),"meshgrid"));
/dports/graphics/py-cartopy/Cartopy-0.19.0.post1/lib/cartopy/tests/mpl/
H A Dtest_mpl_integration.py318 x, y = np.meshgrid(xbnds, ybnds)
341 x, y = np.meshgrid(xbnds, ybnds)
361 x, y = np.meshgrid(xbnds, ybnds)
688 x2d, y2d = np.meshgrid(x, y)
712 x2d, y2d = np.meshgrid(x, y)
736 x2d, y2d = np.meshgrid(x, y)
754 x2d, y2d = np.meshgrid(x, y)
773 x2d, y2d = np.meshgrid(x, y)
795 x2d, y2d = np.meshgrid(x, y)
813 x2d, y2d = np.meshgrid(x, y)
[all …]
H A Dtest_contour.py21 data = np.hypot(*np.meshgrid(x, y)) / 2e5
52 xi, yi = np.meshgrid(xi, yi)
68 xs, ys = np.meshgrid(np.linspace(0, 360), np.linspace(-80, 80))
/dports/math/octave/octave-6.4.0/scripts/plot/draw/
H A Dslice.m39 ## the same size as the array @var{v} in the @qcode{"meshgrid"} format or
78 ## [x, y, z] = meshgrid (linspace (-8, 8, 32));
82 ## [xi, yi] = meshgrid (linspace (-7, 7));
107 [x, y, z] = meshgrid (1:nx, 1:ny, 1:nz);
120 [x, y, z] = meshgrid (x, y, z);
159 [xi, yi, zi] = meshgrid (squeeze (x(1,:,1)),
168 [xi, yi, zi] = meshgrid (squeeze (x(1,:,1)),
180 [xi, yi, zi] = meshgrid (sx(i), squeeze (y(:,1,1)), squeeze (z(1,1,:)));
212 %! [x, y, z] = meshgrid (linspace (-8, 8, 32));
220 %! [x, y, z] = meshgrid (linspace (-8, 8, 32));
[all …]
H A Dsombrero.m45 ## above function over the meshgrid [-8,8] using @code{surf}.
51 ## evaluated over the meshgrid. This can subsequently be plotted with
54 ## @seealso{peaks, meshgrid, mesh, surf}
65 [xx, yy] = meshgrid (linspace (-8, 8, n));
H A Dstreamline.m57 ## [x, y] = meshgrid (-1.5:0.2:2, -1:0.2:2);
114 %! [x, y] = meshgrid (-2:0.5:2);
117 %! [sx, sy] = meshgrid (-2:2:2);
129 %! [x, y, z] = meshgrid (-3:3);
133 %! [sx, sy, sz] = meshgrid (3, 0:1.5:1.5, 0:1.5:3);
146 %! [x, y, z] = meshgrid (-1:0.4:1, -1:0.4:1, -3:0.3:0);
H A Dquiver.m39 ## @var{y} can be specified as vectors and @code{meshgrid} is used to create
69 ## [x, y] = meshgrid (1:2:20);
115 %! [x,y] = meshgrid (1:2:20);
121 %! [x,y] = meshgrid (1:2:20);
127 %! [x,y] = meshgrid (1:2:20);
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/matplotlib/tests/
H A Dtest_quiver.py9 X, Y = np.meshgrid(np.arange(0, 2 * np.pi, 1),
78 X, Y = np.meshgrid(np.arange(15), np.arange(10))
89 X, Y = np.meshgrid(np.arange(10), np.arange(10))
174 X, Y = np.meshgrid(x, x)
185 X, Y = np.meshgrid(x, x)
197 X, Y = np.meshgrid(x, x)
232 X, Y = np.meshgrid(np.arange(15), np.arange(10))
253 X, Y = np.meshgrid(np.arange(2), np.arange(2))
268 X, Y = np.meshgrid(np.arange(2), np.arange(2))
H A Dtest_contour.py28 xg, yg = np.meshgrid(x, y)
114 x, y = np.meshgrid(np.arange(0, 10), np.arange(0, 10))
164 z1, z2 = np.meshgrid(np.arange(20), np.arange(20))
191 X, Y = np.meshgrid(x, y)
221 x, y = np.meshgrid(np.linspace(0, 2.0, n), np.linspace(0, 2.0, n))
276 x, y = np.meshgrid(np.linspace(-2, 2, 4), np.linspace(-2, 2, 4))
287 x, y = np.meshgrid(np.arange(0, 10), np.arange(0, 10))
H A Dtest_triangulation.py192 x, y = np.meshgrid(np.arange(4), np.arange(4))
206 xs, ys = np.meshgrid(xs, ys)
246 xs, ys = np.meshgrid(xs, ys)
269 xs, ys = np.meshgrid(xs, ys)
320 xs, ys = np.meshgrid(xs, ys)
328 xs, ys = np.meshgrid(xs, ys)
356 xs, ys = np.meshgrid(xs, ys)
612 xs, ys = np.meshgrid(xs, ys)
678 xs0, ys0 = np.meshgrid(xs0, ys0)
887 x, y = np.meshgrid(x, x)
[all …]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/tests/
H A Dtest_quiver.py11 X, Y = np.meshgrid(np.arange(0, 2 * np.pi, 1),
48 X, Y = np.meshgrid(np.arange(15), np.arange(10))
62 X, Y = np.meshgrid(np.arange(10), np.arange(10))
137 X, Y = np.meshgrid(x, x)
149 X, Y = np.meshgrid(x, x)
173 X, Y = np.meshgrid(np.arange(15), np.arange(10))
195 X, Y = np.meshgrid(np.arange(2), np.arange(2))
H A Dtest_contour.py27 xg, yg = np.meshgrid(x, y)
64 xg, yg = np.meshgrid(x, y)
168 x, y = np.meshgrid(np.arange(0, 10), np.arange(0, 10))
181 x, y = np.meshgrid(np.arange(0, 10), np.arange(0, 10))
227 z1, z2 = np.meshgrid(np.arange(20), np.arange(20))
253 X, Y = np.meshgrid(x, y)
283 x, y = np.meshgrid(np.linspace(0, 2.0, n), np.linspace(0, 2.0, n))
355 x, y = np.meshgrid(np.linspace(-2, 2, 4), np.linspace(-2, 2, 4))
/dports/math/octave-forge-nurbs/nurbs-1.4.3/inst/
H A Dnrbsurfderiveval.m82 %! [coef(2,:,:), coef(1,:,:)] = meshgrid (c, c);
85 %! [u, v] = meshgrid (linspace(0,1,11));
95 %! [coef(2,:,:), coef(1,:,:)] = meshgrid (c, c);
99 %! [u, v] = meshgrid (linspace(0,1,11));
113 %! [u, v] = meshgrid (linspace(0,1,11));
138 %! [u, v] = meshgrid (linspace(0,1,11));
162 %! [u, v] = meshgrid (linspace(0,1,10));
193 %! [u, v] = meshgrid (linspace(0,1,10));
218 %! [u, v] = meshgrid (linspace(0,1,10));
230 %! [v, u] = meshgrid (linspace (0, 1, 11));
[all …]
/dports/astro/py-astropy/astropy-5.0/astropy/modeling/tests/
H A Dtest_convolution.py67 grid = np.meshgrid(x, x)
82 grid0 = np.meshgrid(x, x)
83 grid1 = np.meshgrid(y, y)
/dports/math/octave/octave-6.4.0/scripts/general/
H A Dinterp2.m363 %! [x,y] = meshgrid (x,y);
374 %! [x,y] = meshgrid (x,y);
385 %! [x,y] = meshgrid (x,y);
396 %! [x,y] = meshgrid (x,y);
408 %! [x,y] = meshgrid (x,y);
420 %! [x,y] = meshgrid (x,y);
431 %! [x,y] = meshgrid (x,y);
442 %! [x,y] = meshgrid (x,y);
453 %! [x,y] = meshgrid (x,y);
464 %! [x,y] = meshgrid (x,y);
[all …]
/dports/math/octave-forge-integration/integration-1.0.7/inst/
H A Dcrule2d.m7 [bpx,bpy]=meshgrid(bpxv,bpyv);
8 [wfx,wfy]=meshgrid(wfxv,wfyv);
H A Dgrule2d.m7 [bpx,bpy]=meshgrid(bpxv,bpyv);
8 [wfx,wfy]=meshgrid(wfxv,wfyv);
/dports/math/octave-forge-integration/integration-1.0.7/
H A DPKG_ADD9 if (!exist ("meshgrid","file") & exist ("meshdom","file"))
10 dispatch("meshgrid","meshdom","any")
/dports/science/py-scikit-fuzzy/scikit-fuzzy-0.4.2/skfuzzy/fuzzymath/
H A Dfuzzy_ops.py29 b, a = np.meshgrid(y, x, sparse=True)
52 b, a = np.meshgrid(y, x, sparse=True)
200 yy, xx = np.meshgrid(y, x, sparse=True) # consider broadcasting rules
201 bb, aa = np.meshgrid(b, a, sparse=True)
731 bb, aa = np.meshgrid(b, a, sparse=True)
753 bb, aa = np.meshgrid(b, a, sparse=True)
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/restoration/tests/
H A Dtest_rolling_ball.py59 x, y = np.meshgrid(range(5), range(5))
68 x, y = np.meshgrid(range(100), range(100))
80 x, y = np.meshgrid(range(100), range(100))
/dports/misc/ompl/ompl-1.5.2/demos/VFRRT/
H A DplotNonconservative.py40 from pylab import meshgrid, arange, quiver, quiverkey, sqrt
44 X, Y = meshgrid(arange(xmin, xmax, step), arange(ymin, ymax, step))
/dports/math/scilab/scilab-6.1.1/scilab/modules/interpolation/tests/unit_tests/
H A Dmesh2d.tst11 [x,y] = meshgrid(1:4,1:3);
29 [x,y]=meshgrid(1:4,1:4);

12345678910>>...42