diff options
author | John Glover <glover.john@gmail.com> | 2010-10-26 14:10:07 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-26 14:10:07 +0100 |
commit | b8e12a9abd9d15a55fca0fe50d93fa5ae3143b9a (patch) | |
tree | b56aa68f85f6f796084ca9f1dd747b8dd5c66c02 /__init__.py | |
parent | 6f77a1d31d008f1b896aef59e4acfc9742d62d1a (diff) | |
download | simpl-b8e12a9abd9d15a55fca0fe50d93fa5ae3143b9a.tar.gz simpl-b8e12a9abd9d15a55fca0fe50d93fa5ae3143b9a.tar.bz2 simpl-b8e12a9abd9d15a55fca0fe50d93fa5ae3143b9a.zip |
Added MQSynthesis, fixed a few bugs
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index 44f2c37..cd46097 100644 --- a/__init__.py +++ b/__init__.py @@ -18,10 +18,10 @@ from basetypes import Peak, PeakDetection, Partial, PartialTracking, Synthesis, from basetypes import compare_peak_amps, compare_peak_freqs from sndobj import SndObjPeakDetection, SndObjPartialTracking, SndObjSynthesis from sms import SMSPeakDetection, SMSPartialTracking, SMSSynthesis, SMSResidual -from mq import MQPeakDetection, MQPartialTracking +from mq import MQPeakDetection, MQPartialTracking, MQSynthesis +from plot import plot_peaks, plot_partials import numpy -#float = numpy.float64 def array (n, type=float): return(numpy.array(n, dtype=type)) |