diff options
-rw-r--r-- | simpl/mq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simpl/mq.py b/simpl/mq.py index cc37eef..adb326a 100644 --- a/simpl/mq.py +++ b/simpl/mq.py @@ -401,7 +401,7 @@ class MQSynthesis(simpl.Synthesis): inst_amp += amp_inc inst_phase = prev_phase + (prev_freq * i) + \ (alpha * (i ** 2)) + (beta * (i ** 3)) - frame.synth[i] += (2.0 * inst_amp) * np.cos(inst_phase) + output[i] += (2.0 * inst_amp) * np.cos(inst_phase) # update previous partials list self._previous_partials[n] = p |