Source code for prism.modellink._sine_wave_link

# -*- coding: utf-8 -*-

# Simple Sine Wave ModelLink
# Compatible with Python 3.5+

"""
SineWaveLink
============
Provides the definition of the :class:`~SineWaveLink` class.

"""


# %% IMPORTS
# Package imports
import numpy as np

# PRISM imports
from prism.modellink._modellink import ModelLink

# All declaration
__all__ = ['SineWaveLink']


# %% CLASS DEFINITION