Generates a waveform containing a sawtooth wave.

If the sequence Y represents the sawtooth wave, this VI generates the pattern according to the following equation.
y[i] = amp × sawtooth(phase[i]), for i = 0, 1, 2, …, n – 1,
where amp = amplitude, n = number of samples (#s), and sawtooth(phase[i]) is
(pmod/180.0) if 0
pmod < 180.0
or
(pmod/180.0 - 2.0) if 180.0
pmod < 360.0
where pmod = p modulo 360.0 and phase[i] is
initial_phase + frequency × 360.0 × i/Fs