Hey guys. So, I am wondering.. I need to implement this interface for some of the common waveforms such as sine:


public interface SignalFunction
{
public double f(int freq, int time);
}
...