Skip to content

Instantly share code, notes, and snippets.

View glyg's full-sized avatar

Guillaume Gay glyg

View GitHub Profile
@glyg
glyg / generator.py
Created November 16, 2021 18:52
a simple waveform generator with magicgui
"""
See: https://docs.scipy.org/doc/scipy/reference/signal.html#waveforms
"""
from dataclasses import dataclass, field
from functools import partial
import matplotlib.pyplot as plt
import numpy as np
from scipy import signal