Source code for deepdow.data.synthetic

"""Collection of functions generating synthetic datasets."""

import numpy as np


[docs]def sin_single(n_timesteps, amplitude=1, freq=0.25, phase=0): """Generate sine waves. Parameters ---------- n_timesteps : int Number of timesteps. amplitude : float The peak value. freq : float Frequency - number of oscillations per timestep. phase : float Offset. Returns ------- y : np.ndarray 1D array of shape `(n_timesteps,)`. """ x = np.arange(n_timesteps) return amplitude * np.sin(2 * np.pi * freq * x + phase)