Home
last modified time | relevance | path

Searched refs:stft (Results 1 – 25 of 54) sorted by relevance

123

/dports/audio/spectacle-lv2/spectacle-2.0-1-g27b1525/sources/plugin/
H A DPluginSpectralAnalyzer.cpp179 stft.clear();
192 stft.process(input, frames);
247 BasicAnalyzer *stft;
250 stft = new STFT;
253 stft = new MultirateSTFT<2>;
256 stft = new MultirateSTFT<3>;
259 stft = new MultirateSTFT<4>;
262 stft = new MultirateSTFT<5>;
274 fStft[c].reset(stft);
275 stft->configure(config);
[all …]
/dports/science/R-cran-e1071/e1071/man/
H A Dplot.stft.Rd1 \name{plot.stft}
2 \alias{plot.stft}
5 An object of class \code{"stft"} is plotted as a gray scale image.
11 \method{plot}{stft}(x, col = gray(63:0/63), \dots)
14 \item{x}{An object of class \code{"stft"} as obtained by the function
15 \code{stft}.}
23 \seealso{stft}
25 y<-stft(x)
H A Dstft.Rd1 \name{stft}
4 \usage{stft(X, win=min(80,floor(length(X)/10)), inc=min(24,
6 \alias{stft}
9 \item{X}{The vector from which the stft is computed.}
29 \value{Object of type stft. Contains the values of the stft and
32 \item{values}{A matrix containing the results of the stft. Each row of
42 \seealso{plot.stft}
45 y<-stft(x)
H A Drectangle.window.Rd24 \seealso{stft}
27 y<-stft(x, wtype="rectangle.window")
H A Dhamming.window.Rd29 \seealso{stft, hanning.window}
34 y<-stft(x, wtype="hamming.window")
H A Dhanning.window.Rd29 \seealso{stft, hamming.window}
34 y<-stft(x, wtype="hanning.window")
/dports/math/octave/octave-6.4.0/scripts/signal/
H A Dstft.m27 ## @deftypefn {} {@var{y} =} stft (@var{x})
28 ## @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size})
29 ## @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size}, @var{inc})
30 ## @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size}, @var{inc}, @var{num_coef})
32 ## @deftypefnx {} {[@var{y}, @var{c}] =} stft (@dots{})
57 ## @code{@var{y} = stft (@var{x}, @dots{})} returns the absolute values of the
60 ## @code{[@var{y}, @var{c}] = stft (@var{x}, @dots{})} returns the entire
67 function [y, c] = stft (x, win_size = 80, inc = 24, num_coef = 64, win_type = 1) function
79 error ("stft: unknown window type '%s'", win_type);
85 error ("stft: X must be a vector");
[all …]
H A Dsynthesis.m34 ## [@var{y}, @var{c}] = stft (@var{x} , @dots{})
36 ## @seealso{stft}
H A Dmodule.mk43 %reldir%/stft.m \
/dports/multimedia/libopenshot/libopenshot-0.2.7/src/audio_effects/
H A DRobotization.cpp38 …otization() : fft_size(FFT_SIZE_512), hop_size(HOP_SIZE_2), window_type(RECTANGULAR), stft(*this) { in Robotization()
45 fft_size(new_fft_size), hop_size(new_hop_size), window_type(new_window_type), stft(*this) in Robotization()
78 stft.setup(num_output_channels); in GetFrame()
79 stft.updateParameters((int)fft_size_value, in GetFrame()
83 stft.process(*frame->audio); in GetFrame()
H A DWhisperization.cpp37 …erization() : fft_size(FFT_SIZE_512), hop_size(HOP_SIZE_8), window_type(RECTANGULAR), stft(*this) { in Whisperization()
44 fft_size(new_fft_size), hop_size(new_hop_size), window_type(new_window_type), stft(*this) in Whisperization()
77 stft.setup(num_output_channels); in GetFrame()
78 stft.updateParameters((int)fft_size_value, in GetFrame()
82 stft.process(*frame->audio); in GetFrame()
H A DRobotization.h119 RobotizationEffect stft; variable
H A DWhisperization.h119 WhisperizationEffect stft; variable
/dports/science/R-cran-e1071/e1071/
H A DMD525 8e1ad1d11cc51d56f3567d0465bb1b71 *R/plot.stft.R
35 bed8f86b4b9c45ebf4c847960b7a6824 *R/stft.R
72 4c5574df4e6adeb8520097531cc02234 *man/plot.stft.Rd
85 fe077a9a20d0e3349a32a3369758f97e *man/stft.Rd
H A DNAMESPACE29 extractPath, sigmoid, dsigmoid, d2sigmoid, skewness, stft, svm,
48 S3method(plot, stft)
/dports/science/py-scipy/scipy-1.7.1/scipy/signal/tests/
H A Dtest_spectral.py11 spectrogram, stft, istft, check_COLA, check_NOLA)
1088 z = np.array(stft(x), dtype=object)
1090 assert_raises(ValueError, stft, x, window=np.ones((2,2)))
1092 assert_raises(ValueError, stft, x, nperseg=-256)
1094 assert_raises(ValueError, stft, x, nperseg=256, nfft=8)
1187 f1, t1, Z1 = stft(x, fs, window, nperseg, noverlap)
1217 _, _, zz = stft(x, nperseg=nperseg, noverlap=noverlap,
1244 _, _, zz = stft(x, nperseg=nperseg, noverlap=noverlap,
1273 _, _, zz = stft(x, nperseg=nperseg, noverlap=noverlap,
1441 _, _, z_flat = stft(x_flat)
[all …]
/dports/science/R-cran-e1071/e1071/R/
H A Dstft.R1 stft <- function(X, win=min(80,floor(length(X)/10)), function
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/parasites/clouds/test/
H A Dmakefile17 stft.cc \
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/clouds/test/
H A Dmakefile17 stft.cc \
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/libs/eurorack/eurorack/clouds/test/
H A Dmakefile17 stft.cc \
/dports/misc/urh/urh-2.9.2/src/urh/signalprocessing/
H A DSpectrogram.py89 def stft(self, samples: np.ndarray): member in Spectrogram
141 spectrogram = np.fft.fftshift(self.stft(samples), axes=(1,))
/dports/math/octave/octave-6.4.0/doc/interpreter/
H A Dsignal.texi1029 @c stft scripts/signal/stft.m
1031 @deftypefn {} {@var{y} =} stft (@var{x})
1032 @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size})
1033 @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size}, @var{inc})
1034 @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size}, @var{inc}, @var{num_coef})
1035 @deftypefnx {} {@var{y} =} stft (@var{x}, @var{win_size}, @var{inc}, @var{num_coef}, @var{win_type})
1036 @deftypefnx {} {[@var{y}, @var{c}] =} stft (@dots{})
1061 @code{@var{y} = stft (@var{x}, @dots{})} returns the absolute values of the
1064 @code{[@var{y}, @var{c}] = stft (@var{x}, @dots{})} returns the entire
1081 [@var{y}, @var{c}] = stft (@var{x} , @dots{})
[all …]
/dports/science/py-SimpleSpectral/SimpleSpectral-1.0.0/
H A DREADME.rst48 - stft
/dports/lang/fpc-source/fpc-3.2.2/packages/cocoaint/src/coremediaio/
H A DCMIOHardwareStream.inc70 kCMIOStreamPropertyStillImageFormatDescriptions = 'stft';
/dports/audio/audacity/audacity-Audacity-3.1.3/plug-ins/
H A Dvocalrediso.ny187 (defun stft (sound length skip window
257 (setf sum-fft (stft (sum (: snd 0) (: snd 1)) fs hop analyze-win))
258 (setf dif-fft (stft (diff (: snd 0) (: snd 1)) fs hop analyze-win 'steer sum-fft))

123