fix the shape of the output making it as the doc says (array of size 2 containing an array of freq and an array of mag)

nix
tremblap 2 years ago
parent b2963b17fd
commit 61b5363c33

@ -3,7 +3,7 @@ FluidSineFeature : FluidRTMultiOutUGen {
maxNumPeaks = maxNumPeaks ? numPeaks; maxNumPeaks = maxNumPeaks ? numPeaks;
^this.multiNew('control', in.asAudioRateInput(this), numPeaks, maxNumPeaks, detectionThreshold, order, freqUnit, magUnit, windowSize, hopSize, fftSize, maxFFTSize) ^this.multiNew('control', in.asAudioRateInput(this), numPeaks, maxNumPeaks, detectionThreshold, order, freqUnit, magUnit, windowSize, hopSize, fftSize, maxFFTSize).reshape(2,maxNumPeaks)
} }
init { arg ... theInputs; init { arg ... theInputs;

Loading…
Cancel
Save