Skip to content

Commit

Permalink
Merge pull request #199 from pyfar/feature/spectral_sweep_synthesis
Browse files Browse the repository at this point in the history
Frequency domain sweep synthesis
  • Loading branch information
f-brinkmann committed Apr 25, 2024
2 parents 2dc26a6 + fb4d817 commit 40622ad
Show file tree
Hide file tree
Showing 3 changed files with 868 additions and 8 deletions.
6 changes: 5 additions & 1 deletion pyfar/signals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"""

from .deterministic import (
sine, impulse, linear_sweep_time, exponential_sweep_time)
sine, impulse, linear_sweep_time, exponential_sweep_time,
linear_sweep_freq, exponential_sweep_freq,
linear_perfect_sweep, magnitude_spectrum_weighted_sweep)

from .stochastic import (
noise, pulsed_noise)
Expand All @@ -21,4 +23,6 @@
__all__ = [
'sine', 'impulse', 'noise', 'pulsed_noise',
'linear_sweep_time', 'exponential_sweep_time',
'linear_sweep_freq', 'exponential_sweep_freq',
'linear_perfect_sweep', 'magnitude_spectrum_weighted_sweep',
'files']
Loading

0 comments on commit 40622ad

Please sign in to comment.