Home
last modified time | relevance | path

Searched refs:vmax (Results 126 – 150 of 4775) sorted by relevance

12345678910>>...191

/dports/misc/concourse/concourse-6.7.2/web/assets/css/
H A Dnotauthorized.less10 height: 36vmax;
14 padding: 5vmax 0 2vmax 0;
15 width: 11.5vmax;
16 height: 12vmax;
20 font-size: 1.8vmax;
22 padding-bottom: 1vmax;
26 font-size: 1.1vmax;
H A Dnotfound.less4 height: 36vmax;
8 font-size: 4vmax;
13 font-size: 1.8vmax;
17 margin-top: 4vmax;
18 margin-bottom: 4vmax;
19 width: 15vmax;
23 font-size: 1.4vmax;
/dports/cad/feappv/feappv-4.1i/program/
H A Dscalev.f27 real*8 v(ndf,*),vmax local
33 vmax = 0.0d0
37 vmax = max(vmax,abs(v(pdf(i),n)))
44 if(vmax.gt.0.0d0) then
45 vmax = 1.d0/vmax
48 v(i,n) = v(i,n)*vmax
/dports/astro/py-astropy/astropy-5.0/astropy/visualization/
H A Dinterval.py66 vmin, vmax = self.get_limits(values)
76 if (vmax - vmin) != 0:
77 np.true_divide(values, vmax - vmin, out=values)
99 def __init__(self, vmin=None, vmax=None): argument
101 self.vmax = vmax
111 vmax = np.max(values) if self.vmax is None else self.vmax
112 return vmin, vmax
168 return vmin, vmax
248 vmax = samples[-1]
294 vmax = min(vmax, median + (npix - center_pixel) * slope)
[all …]
H A Dmpl_normalize.py71 super().__init__(vmin=vmin, vmax=vmax, clip=clip)
74 self.vmax = vmax
97 if self.vmin is not None and self.vmax is not None:
104 if self.vmax is None:
105 self.vmax = np.max(data[np.isfinite(data)])
110 if self.vmax is None:
111 self.vmax = _vmax
146 values = values.filled(self.vmax)
187 return values_norm * (self.vmax - self.vmin) + self.vmin
296 vmin, vmax = interval.get_limits(data)
[all …]
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/plotting/
H A Dsurf_plotting.py282 if vmax is None:
306 norm = Normalize(vmin=vmin, vmax=vmax)
459 vmax = n_levels
461 norm = Normalize(vmin=0, vmax=vmax)
596 alpha=alpha, bg_on_data=bg_on_data, darkness=darkness, vmax=vmax,
660 array, vmax, True, kwargs
662 norm = Normalize(vmin=vmin, vmax=vmax)
676 norm=plt.Normalize(vmin=vmin, vmax=vmax))
798 vmax=vmax,
902 if vmax is None:
[all …]
/dports/graphics/py-mpl-scatter-density/mpl-scatter-density-0.7/mpl_scatter_density/
H A Dgeneric_density_artist.py49 def __init__(self, ax, dpi=72, color=None, vmin=None, vmax=None, norm=None, argument
67 if vmin is not None or vmax is not None:
68 self.set_clim(vmin, vmax)
82 vmax = self._density_vmax(array)
84 vmax = self._density_vmax
87 super(GenericDensityArtist, self).set_clim(vmin, vmax)
89 def set_clim(self, vmin, vmax): argument
91 self._density_vmax = vmax
96 if norm is not None and norm.vmax is not None:
97 self._density_vmax = norm.vmax
/dports/audio/audacity/audacity-Audacity-3.1.3/src/
H A DShuttle.cpp332 … const wxChar * key, const bool vdefault, const bool vmin, const bool vmax, const bool vscl){;… in Define() argument
333 … var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ){;… in Define() argument
334 …r, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ){;… in Define() argument
361 … var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ) in Define() argument
367 … var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ) in Define() argument
440 … var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ) in Define() argument
446 bOK = mpEap->ReadAndVerify(key, &temp, vdefault, vmin, vmax); in Define()
457 bOK = mpEap->ReadAndVerify(key, &temp, vdefault, vmin, vmax); in Define()
468 bOK = mpEap->ReadAndVerify(key, &temp, vdefault, vmin, vmax); in Define()
480 bOK = mpEap->ReadAndVerify(key, &temp, vdefault, vmin, vmax); in Define()
[all …]
/dports/math/R-cran-terra/terra/src/
H A Dmath_utils.h36 void minmaxlim(Iterator start, Iterator end, double &vmin, double &vmax, const double &lmin, const … in minmaxlim() argument
38 vmax = std::numeric_limits<double>::lowest(); in minmaxlim()
43 if (*v > vmax) { in minmaxlim()
44 vmax = *v; in minmaxlim()
55 vmax = NAN; in minmaxlim()
61 void minmax(Iterator start, Iterator end, double &vmin, double &vmax) { in minmax() argument
63 vmax = std::numeric_limits<double>::lowest(); in minmax()
67 if (*v > vmax) { in minmax()
68 vmax = *v; in minmax()
78 vmax = NAN; in minmax()
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/widgets/
H A Ddrange.cpp163 if ((d_periodic) && (vmin != vmax)) in setNewValue()
164 d_value = x + ceil((vmin - x) / (vmax - vmin)) in setNewValue()
165 * (vmax - vmin); in setNewValue()
169 else if (x > vmax) { in setNewValue()
170 if ((d_periodic) && (vmin != vmax)) in setNewValue()
171 d_value = x - ceil( ( x - vmax) / (vmax - vmin )) in setNewValue()
172 * (vmax - vmin); in setNewValue()
174 d_value = vmax; in setNewValue()
252 vmax = convertFrom(vmax, mode); in setRange()
253 bool rchg = ((d_maxValue != vmax) || (d_minValue != vmin)); in setRange()
[all …]
/dports/science/py-nilearn/nilearn-0.8.1/nilearn/plotting/tests/
H A Dtest_js_plotting_utils.py62 assert (colors['norm'].vmax, colors['norm'].vmin) == (13, -13)
127 assert (colors['norm'].vmax, colors['norm'].vmin) == (14, 0)
138 colors = js_plotting_utils.colorscale(cmap, values, vmax=7)
144 cmap, values, vmax=7, vmin=-5)
154 colors = js_plotting_utils.colorscale(cmap, values, vmax=7,
158 assert (colors['norm'].vmax, colors['norm'].vmin) == (7, 0)
161 colors = js_plotting_utils.colorscale(cmap, values, vmax=7,
164 assert (colors['norm'].vmax, colors['norm'].vmin) == (7, 3)
166 cmap, values, vmax=7, symmetric_cmap=False, vmin=1)
168 assert (colors['norm'].vmax, colors['norm'].vmin) == (7, 1)
[all …]
H A Dtest_img_plotting.py879 assert vmax == 2
898 assert vmax == 2
917 assert vmax == 2
943 assert vmax == 2
962 assert vmax == 2
981 assert vmax == 2
1007 assert vmax == 2
1026 assert vmax == 2
1045 assert vmax == 2
1078 assert vmax == 2
[all …]
/dports/astro/py-metpy/MetPy-1.1.0/examples/calculations/
H A DSmoothing.py32 ax.imshow(raw_data, vmin=0, vmax=1)
43 ax[0, 0].imshow(mpcalc.smooth_gaussian(raw_data, 3), vmin=0, vmax=1)
46 ax[0, 1].imshow(mpcalc.smooth_gaussian(raw_data, 8), vmin=0, vmax=1)
50 ax[0, 2].imshow(mpcalc.smooth_rectangular(raw_data, (3, 7), 2), vmin=0, vmax=1)
54 ax[1, 0].imshow(mpcalc.smooth_n_point(raw_data, 5, 1), vmin=0, vmax=1)
57 ax[1, 1].imshow(mpcalc.smooth_n_point(raw_data, 5, 4), vmin=0, vmax=1)
61 ax[1, 2].imshow(mpcalc.smooth_circular(raw_data, 2, 2), vmin=0, vmax=1)
65 ax[2, 0].imshow(mpcalc.smooth_n_point(raw_data, 9, 1), vmin=0, vmax=1)
68 ax[2, 1].imshow(mpcalc.smooth_n_point(raw_data, 9, 4), vmin=0, vmax=1)
72 ax[2, 2].imshow(mpcalc.smooth_window(raw_data, np.diag(np.ones(5)), 2), vmin=0, vmax=1)
/dports/games/easyrpg-player/Player-0.7.0/src/
H A Dhslrgb.cpp33 double vmin, vmax, delta; in RGB2HSL() local
39 vmax = max(max(r, g), b); in RGB2HSL()
40 delta = vmax - vmin; in RGB2HSL()
41 ncol.l = (vmax + vmin) / 2; in RGB2HSL()
48 ncol.s = delta / (vmax + vmin); in RGB2HSL()
50 ncol.s = delta / (2 - vmax - vmin); in RGB2HSL()
52 dr = (((vmax - r) / 6) + (delta / 2)) / delta; in RGB2HSL()
53 dg = (((vmax - g) / 6) + (delta / 2)) / delta; in RGB2HSL()
55 if (r == vmax) { in RGB2HSL()
57 } else if (g == vmax) { in RGB2HSL()
[all …]
/dports/astro/py-astropy/astropy-5.0/astropy/visualization/tests/
H A Dtest_norm.py44 ImageNormalize(vmin=2., vmax=10., stretch=SqrtStretch,
49 ImageNormalize(vmin=2., vmax=10., stretch=None)
91 assert norm.vmax == 10.
100 assert norm.vmax == np.max(DATA)
106 norm = ImageNormalize(vmin=1., vmax=3., clip=False)
154 assert_equal((norm.vmin, norm.vmax), (1.65, 22.35))
158 assert_equal((norm2.vmin, norm2.vmax), (norm.vmin, norm.vmax))
161 assert_equal((norm3.vmin, norm3.vmax), (norm.vmin, norm.vmax))
168 assert_equal((norm4.vmin, norm4.vmax), (0, 24))
171 assert_equal((norm5.vmin, norm5.vmax), (norm4.vmin, norm4.vmax))
[all …]
/dports/net/concourse-fly/concourse-6.7.1/web/assets/css/
H A Dnotfound.less4 height: 36vmax;
8 font-size: 4vmax;
13 font-size: 1.8vmax;
17 margin-top: 4vmax;
18 margin-bottom: 4vmax;
19 width: 15vmax;
23 font-size: 1.4vmax;
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/matplotlib/
H A Dcolors.py893 self.vmax = _sanitize_extrema(vmax)
943 (vmax,), _ = self.process_value(self.vmax)
971 (vmax,), _ = self.process_value(self.vmax)
1013 vmin, vmax = self.vmin, self.vmax
1014 if vmin > vmax:
1044 vmin, vmax = self.vmin, self.vmax
1109 vmin, vmax = self.vmin, self.vmax
1157 vmin, vmax = self.vmin, self.vmax
1205 vmin, vmax = self.vmin, self.vmax
1231 vmin, vmax = self.vmin, self.vmax
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/meta/css/css-shapes/shape-outside/values/
H A Dshape-outside-ellipse-005.html.ini39 [test unit: vmax - ellipse(25vmax closest-side) - inline]
64 [test unit: vmax - ellipse(25vmax closest-side) - computed]
128 [test unit: vmax - ellipse(farthest-side 75vmax) - inline]
185 [test unit: vmax - ellipse(50vmax 25%) - inline]
245 [test unit: vmax - ellipse(50vmax 100vmax) - inline]
308 [test unit: vmax - ellipse(100vmax 100px) - inline]
332 [test unit: vmax - ellipse(25% 50vmax) - inline]
345 [test unit: vmax - ellipse(25% 50vmax) - computed]
377 [test unit: vmax - ellipse(50vmax 25%) - computed]
381 [test unit: vmax - ellipse(100vmax 100px) - computed]
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/meta/css/css-shapes/shape-outside/values/
H A Dshape-outside-ellipse-005.html.ini39 [test unit: vmax - ellipse(25vmax closest-side) - inline]
64 [test unit: vmax - ellipse(25vmax closest-side) - computed]
128 [test unit: vmax - ellipse(farthest-side 75vmax) - inline]
185 [test unit: vmax - ellipse(50vmax 25%) - inline]
245 [test unit: vmax - ellipse(50vmax 100vmax) - inline]
308 [test unit: vmax - ellipse(100vmax 100px) - inline]
332 [test unit: vmax - ellipse(25% 50vmax) - inline]
345 [test unit: vmax - ellipse(25% 50vmax) - computed]
377 [test unit: vmax - ellipse(50vmax 25%) - computed]
381 [test unit: vmax - ellipse(100vmax 100px) - computed]
[all …]
/dports/graphics/libGLU/glu-9.0.2/src/libnurbs/interface/
H A DbezierPatch.cc52 bezierPatch* bezierPatchMake(float umin, float vmin, float umax, float vmax, int uorder, int vorder… in bezierPatchMake() argument
59 ret->vmax = vmax; in bezierPatchMake()
71 bezierPatch* bezierPatchMake2(float umin, float vmin, float umax, float vmax, int uorder, int vorde… in bezierPatchMake2() argument
78 ret->vmax = vmax; in bezierPatchMake2()
129 printf("umin,umax=(%f,%f), (vmin, vmax)=(%f,%f)\n", b->umin, b->umax, b->vmin, b->vmax); in bezierPatchPrint()
145 && v >= b->vmin && v<= b->vmax) in bezierPatchEval()
148 …bezierSurfEval(b->umin, b->umax, b->uorder, b->vmin, b->vmax, b->vorder, b->dimension, b->ctlpoint… in bezierPatchEval()
154 …bezierSurfEval(b->umin, b->umax, b->uorder, b->vmin, b->vmax, b->vorder, b->dimension, b->ctlpoint… in bezierPatchEval()
161 …bezierSurfEvalNormal(b->umin, b->umax, b->uorder, b->vmin, b->vmax, b->vorder, b->dimension, b->ct… in bezierPatchEvalNormal()
164 && v >= b->vmin && v<= b->vmax) in bezierPatchEvalNormal()
[all …]
/dports/graphics/py-cartopy/Cartopy-0.19.0.post1/lib/cartopy/mpl/
H A Dticker.py491 def _guess_steps(self, vmin, vmax): argument
493 dv = abs(vmax - vmin)
510 def _raw_ticks(self, vmin, vmax): argument
511 self._guess_steps(vmin, vmax)
514 def bin_boundaries(self, vmin, vmax): argument
515 self._guess_steps(vmin, vmax)
529 def tick_values(self, vmin, vmax): argument
531 vmax = min(vmax, 90.)
534 def _guess_steps(self, vmin, vmax): argument
536 vmax = min(vmax, 90.)
[all …]
/dports/audio/ardour6/Ardour-6.8.0/libs/ardour/
H A Dsse_functions_avx_linux.cc168 vmax = _mm256_max_ps(vmax, vsrc); in x86_sse_avx_find_peaks()
188 vmax = _mm256_max_ps(vmax, vsrc1); in x86_sse_avx_find_peaks()
191 vmax = _mm256_max_ps(vmax, vsrc2); in x86_sse_avx_find_peaks()
203 vmax = _mm256_max_ps(vmax, vsrc); in x86_sse_avx_find_peaks()
215 vmax = _mm256_max_ps(vmax, vsrc); in x86_sse_avx_find_peaks()
224 vmax = avx_getmax_ps(vmax); in x86_sse_avx_find_peaks()
808 vmax = _mm256_max_ps(tmp, vmax); in avx_getmax_ps()
810 vmax = _mm256_max_ps(tmp, vmax); in avx_getmax_ps()
811 tmp = _mm256_permute2f128_ps(vmax, vmax, 1); in avx_getmax_ps()
812 vmax = _mm256_max_ps(tmp, vmax); in avx_getmax_ps()
[all …]
/dports/science/healpix/Healpix_3.50/src/healpy/healpy/
H A Dprojaxes.py140 vmax=None, argument
184 vmax = 0.
189 vmax += 1.
201 vmax=vmax,
879 norm.vmax = vmax
934 vmin, vmax = vmax, vmin
968 vmin, vmax = float(self.vmin), float(self.vmax)
1102 vmin, vmax = float(self.vmin), float(self.vmax)
1132 vmin, vmax = float(self.vmin), float(self.vmax)
1167 vmin, vmax = float(self.vmin), float(self.vmax)
[all …]
/dports/astro/py-pykep/pykep-2.6/src/third_party/cspice/
H A Dreclat_c.c195 SpiceDouble vmax; in reclat_c() local
203 vmax = MaxAbs( rectan[0], MaxAbs( rectan[1], rectan[2] ) ); in reclat_c()
205 if ( vmax > 0.) in reclat_c()
207 x1 = rectan[0] / vmax; in reclat_c()
208 y1 = rectan[1] / vmax; in reclat_c()
209 z1 = rectan[2] / vmax; in reclat_c()
210 *radius = vmax * sqrt( x1*x1 + y1*y1 + z1*z1 ); in reclat_c()
/dports/astro/pykep/pykep-2.6/src/third_party/cspice/
H A Dreclat_c.c195 SpiceDouble vmax; in reclat_c() local
203 vmax = MaxAbs( rectan[0], MaxAbs( rectan[1], rectan[2] ) ); in reclat_c()
205 if ( vmax > 0.) in reclat_c()
207 x1 = rectan[0] / vmax; in reclat_c()
208 y1 = rectan[1] / vmax; in reclat_c()
209 z1 = rectan[2] / vmax; in reclat_c()
210 *radius = vmax * sqrt( x1*x1 + y1*y1 + z1*z1 ); in reclat_c()

12345678910>>...191