Design a sinusoidal wave function in the frequency domain to analyze FMCW
How to design a sinusoidal wave function in the frequency domain to FMCW using newFASANT tool.
double fmcw_4(){
double BROADBAND_GHZ = 1.0;
// change [0, $period] range to [0, 2*PI] range
double radians = ($x * (Math.PI*2)) / $period;
return Math.sin(radians) * BROADBAND_GHZ;
}