Home
last modified time | relevance | path

Searched refs:nharmonics (Results 1 – 8 of 8) sorted by relevance

/dports/audio/din/din-52/src/
H A Dsine_mixer.cc70 nharmonics = h; in num_harmonics()
71 if (nharmonics < 1) nharmonics = 1; in num_harmonics()
76 harmonics.resize (nharmonics); in prep_harmonics()
79 for (int i = 0, j = 1; i < nharmonics; ++i, ++j) { in prep_harmonics()
99 for (int i = 0; i < nharmonics; ++i) { in mix()
H A Dsine_mixer.h48 int nharmonics; member
/dports/audio/infamous-plugins-lv2/infamousPlugins-0.3.0-7-g778e591/src/casynth/
H A Dnote.c12 … *self, WAVESOURCE* waves, double sample_rate, uint8_t value, uint8_t* nharmonics, float* harmonic… in init_note() argument
28 self->nharmonics = nharmonics; in init_note()
225 for(j=0; j<*self->nharmonics; j++) //could unroll this but... it'd get ugly in play_note()
264 for(j=0; j<=*self->nharmonics; j++) in play_note()
H A Dnote.h19 uint8_t* nharmonics; member
55 … *self, WAVESOURCE* waves, double sample_rate, uint8_t value, uint8_t* nharmonics, float* harmonic…
H A Dcasynth_ui_main.cxx92 self->nharmonics->value(val); in casynthUI_port_event()
H A Dcasynth_ui.fl805 nharmonics->value(tmp);
806 nharmonics->floatvalue = tmp;
807 write_function(controller,NHARMONICS,sizeof(float),0,&nharmonics->floatvalue);
1002 Fl_Dial nharmonics {
1003 callback {write_function(controller,NHARMONICS,sizeof(float),0,&nharmonics->floatvalue);
1005 sprintf(s,"%18i",(int)nharmonics->floatvalue);
/dports/audio/guitarix-lv2/guitarix-0.43.1/tools/ampsim/DK/
H A Dsignals.py172 …def plot_harmonic_spectrum(self, response, nharmonics=6, lower_freq=None, upper_freq=None, plotfun… argument
175 …for i, h in enumerate(self.get_harmonics_responses(response, nharmonics, 2*np.pi*freqlist/self.fs)…
180 def plot(self, response, label=None, clip=-80, nharmonics=8, spectrum=None, freq_range=None): argument
189 if self.has_harmonics() and nharmonics > 1 and (spectrum is None or spectrum):
190 …lines = self.plot_harmonic_spectrum(response, nharmonics=nharmonics, lower_freq=lower_freq, upper_…
H A Danalog.py838 def plot(self, sig=None, label=None, clip=-80, nharmonics=8, spectrum=None, freq_range=None): argument
843 …lines = self.last_signal.plot(self.last_output, sig, label, clip, nharmonics, spectrum, freq_range)