Home
last modified time | relevance | path

Searched refs:window_length (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/dports/science/py-scipy/scipy-1.7.1/scipy/signal/tests/
H A Dtest_savitzky_golay.py38 def alt_sg_coeffs(window_length, polyorder, pos): argument
49 pos = window_length // 2
50 t = np.arange(window_length)
74 def compare_coeffs_to_alt(window_length, order): argument
78 for pos in [None] + list(range(window_length)):
88 for window_length in range(1, 8, 2):
89 for order in range(window_length):
95 window_length = 9
96 halflen = window_length // 2
105 h = savgol_coeffs(window_length, polyorder)
[all …]
/dports/devel/p5-Array-Window/Array-Window-1.02/lib/Array/
H A DWindow.pm35 window_length => undef,
85 if ( defined $options{window_length} ) {
86 return undef unless $options{window_length} > 0;
87 $self->{window_length} = $options{window_length};
88 $self->{window_length_desired} = $options{window_length};
111 $self->_calculate_window_length unless defined $self->{window_length};
158 $self->{window_start} = $self->{window_end} - $self->{window_length} + 1;
185 sub window_length { $_[0]->{window_length} } subroutine
203 window_length => $self->{window_length_desired},
240 window_length => $self->{window_length_desired},
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/signal/
H A D_savitzky_golay.py8 def savgol_coeffs(window_length, polyorder, deriv=0, delta=1.0, pos=None, argument
96 if polyorder >= window_length:
99 halflen, rem = divmod(window_length, 2)
107 if not (0 <= pos < window_length):
115 coeffs = np.zeros(window_length)
122 x = np.arange(-pos, window_length - pos, dtype=float)
217 halflen = window_length // 2
218 _fit_edge(x, 0, window_length, 0, halflen, axis,
221 _fit_edge(x, n - window_length, n, n - halflen, n, axis,
225 def savgol_filter(x, window_length, polyorder, deriv=0, delta=1.0, argument
[all …]
/dports/misc/urh/urh-2.9.2/src/urh/awre/engines/
H A DLengthEngine.py94 for window_length in window_lengths:
95 scored_ranges[length][window_length] = []
98 for window_length in window_lengths:
105 for start in range(0, len(bits) + 1 - window_length, n_gram_length):
107 score = LengthEngine.score_bits(bits[start:start + window_length],
115 rng = CommonRange(common_range.start + max_start, window_length,
116 common_range.value[max_start:max_start + window_length],
121 scored_ranges[length][window_length].append(rng)
130 for window_length, ranges in ranges_by_window_length.items():
134 possible_window_lengths[window_length] += 1
[all …]
/dports/audio/festival/speech_tools/sigpr/pda/
H A Dpcb_smoother.cc80 mk_window_coeffs (ms->window_length, win_coeffs); in array_smoother()
86 C2 = ms->window_length - 1; in array_smoother()
87 delay = ms->first_median + ms->window_length - 2; in array_smoother()
97 C4 = ms->window_length - 1; in array_smoother()
98 delx = ms->first_median + ms->window_length - 1; in array_smoother()
252 for (i = par->window_length - 1; i > 0; i--) in hanning()
261 for (i = 0; i < par->window_length; i++) in hanning()
265 for (i = 0; i < par->window_length; i++) in hanning()
269 for (i = 0, j = 0; i < par->window_length; i++) in hanning()
285 p_par->window_length = DEFAULT_WLEN; in initialise_parameters()
[all …]
/dports/net/libngtcp2/ngtcp2-224bd62/lib/
H A Dngtcp2_window_filter.c40 uint64_t window_length) { in ngtcp2_window_filter_init() argument
41 wf->window_length = window_length; in ngtcp2_window_filter_init()
48 new_time - wf->estimates[2].time > wf->window_length) { in ngtcp2_window_filter_update()
62 if (new_time - wf->estimates[0].time > wf->window_length) { in ngtcp2_window_filter_update()
68 if (new_time - wf->estimates[0].time > wf->window_length) { in ngtcp2_window_filter_update()
76 new_time - wf->estimates[1].time > wf->window_length >> 2) { in ngtcp2_window_filter_update()
84 new_time - wf->estimates[2].time > wf->window_length >> 1) { in ngtcp2_window_filter_update()
/dports/science/chrono/chrono-7.0.1/src/chrono/motion_functions/
H A DChFunction_Repeat.cpp22 ChFunction_Repeat::ChFunction_Repeat() : window_start(0), window_length(1), window_phase(0) { in CH_FACTORY_REGISTER()
28 window_length = other.window_length; in ChFunction_Repeat()
34 return fa->Get_y(this->window_start + fmod(x + this->window_phase, this->window_length)); in Get_y()
49 marchive << CHNVP(window_length); in ArchiveOUT()
61 marchive >> CHNVP(window_length); in ArchiveIN()
H A DChFunction_Repeat.h39 double window_length; ///< window length variable
58 void Set_window_length(double m_v) { window_length = m_v; } in Set_window_length()
59 double Get_window_length() const { return window_length; } in Get_window_length()
/dports/misc/urh/urh-2.9.2/src/urh/ui/painting/
H A DSniffSceneManager.py6 def __init__(self, data_array, parent, window_length=5 * 10**6): argument
11 self.window_length = window_length
27 if value > self.window_length:
28 self.__start = value - self.window_length
/dports/science/py-scipy/scipy-1.7.1/scipy/stats/tests/
H A Dtest_entropy.py134 entropy = stats.differential_entropy(values, window_length=1,
138 entropy = stats.differential_entropy(values, window_length=8,
153 entropy = stats.differential_entropy(values, axis=1, window_length=1,
161 entropy = stats.differential_entropy(values, axis=1, window_length=8,
180 for window_length in {-1, 0, sample_size//2, sample_size}:
183 window_length=window_length,
190 window_length=window_length,
250 res = stats.differential_entropy(rvs, window_length=m,
274 res = stats.differential_entropy(rvs, window_length=m,
/dports/science/py-obspy/obspy-1.2.2/obspy/core/tests/
H A Dtest_util_misc.py118 window_length=5.0,
135 window_length=5.0,
150 window_length=5.0,
165 window_length=15.0,
179 window_length=15.0,
194 window_length=5.0,
211 window_length=15.0,
225 window_length=15.0,
240 window_length=1.0,
/dports/devel/boost-docs/boost_1_72_0/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size(); in compute_harris_responses() local
50 auto const half_length = window_length / 2; in compute_harris_responses()
60 y_kernel < window_length; in compute_harris_responses()
63 x_kernel < window_length; in compute_harris_responses()
/dports/devel/hyperscan/boost_1_75_0/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size(); in compute_harris_responses() local
50 auto const half_length = window_length / 2; in compute_harris_responses()
60 y_kernel < window_length; in compute_harris_responses()
63 x_kernel < window_length; in compute_harris_responses()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size(); in compute_harris_responses() local
50 auto const half_length = window_length / 2; in compute_harris_responses()
60 y_kernel < window_length; in compute_harris_responses()
63 x_kernel < window_length; in compute_harris_responses()
/dports/devel/boost-libs/boost_1_72_0/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size(); in compute_harris_responses() local
50 auto const half_length = window_length / 2; in compute_harris_responses()
60 y_kernel < window_length; in compute_harris_responses()
63 x_kernel < window_length; in compute_harris_responses()
/dports/devel/boost-python-libs/boost_1_72_0/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size(); in compute_harris_responses() local
50 auto const half_length = window_length / 2; in compute_harris_responses()
60 y_kernel < window_length; in compute_harris_responses()
63 x_kernel < window_length; in compute_harris_responses()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/gil/image_processing/
H A Dharris.hpp47 auto const window_length = weights.size();
50 auto const half_length = window_length / 2;
60 y_kernel < window_length;
63 x_kernel < window_length;
/dports/biology/biosig/biosig-2.3.3/biosig4matlab/t320_Nirs/
H A DcalcNIRSspectra.m40 window_length = 100; % Windowlength in [s] variable
47 window = hamming(window_length*fs);
49 window = hann(window_length*fs);
51 window = triang(window_length*fs);
53 window = bartlett(window_length*fs);
/dports/databases/rrdman/rrdman-1.0.1/perlbin/
H A Drrd_hwreapply.in35 my ($failure_threshold, $window_length, $alpha, $beta);
53 'window-length=i' => \$window_length,
76 defined $window_length or
123 $window_length = 9;
172 not defined( $window_length ) or
278 $window_length = $rrdinfo->{'rra['.$rranum.'].window_length'} unless
279 defined $window_length;
284 $window_length,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/congestion_control/
H A Dwindowed_filter.h71 WindowedFilter(TimeDeltaT window_length, T zero_value, TimeT zero_time) in WindowedFilter() argument
72 : window_length_(window_length), in WindowedFilter()
79 void SetWindowLength(TimeDeltaT window_length) { in SetWindowLength() argument
80 window_length_ = window_length; in SetWindowLength()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/congestion_controller/bbr/
H A Dwindowed_filter.h78 WindowedFilter(TimeDeltaT window_length, T zero_value, TimeT zero_time) in WindowedFilter() argument
79 : window_length_(window_length), in WindowedFilter()
86 void SetWindowLength(TimeDeltaT window_length) { in SetWindowLength() argument
87 window_length_ = window_length; in SetWindowLength()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/congestion_control/third_party/
H A Dwindowed_filter.h69 WindowedFilter(TimeDeltaT window_length, T zero_value, TimeT zero_time) in WindowedFilter() argument
70 : window_length_(window_length), in WindowedFilter()
77 void SetWindowLength(TimeDeltaT window_length) { in SetWindowLength() argument
78 window_length_ = window_length; in SetWindowLength()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/congestion_control/
H A Dwindowed_filter.h71 WindowedFilter(TimeDeltaT window_length, T zero_value, TimeT zero_time) in WindowedFilter() argument
72 : window_length_(window_length), in WindowedFilter()
79 void SetWindowLength(TimeDeltaT window_length) { in SetWindowLength() argument
80 window_length_ = window_length; in SetWindowLength()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/base/
H A Dtransform.py151 def _guerrero_cv(self, x, bounds, window_length=4, scale='sd', argument
178 groups = int(nobs / window_length)
181 grouped_data = np.reshape(x[nobs - (groups * window_length): nobs],
182 (groups, window_length))
/dports/science/py-scipy/scipy-1.7.1/scipy/stats/
H A D_entropy.py89 window_length: Optional[int] = None,
233 if window_length is None:
234 window_length = math.floor(math.sqrt(n) + 0.5)
236 if not 2 <= 2 * window_length < n:
265 res = methods[method](sorted_data, window_length)

12345678910>>...12