drPutWaveformXVec
drPutWaveformXVec(o_waveo_vec) => t / nil
Description
Puts the data vector o_vec into the waveform data object o_wave. o_vec is the X vector of the waveform data object. If the o_wave already contains a Y vector, the length of o_vec must be the same as that of the Y vector.
Arguments
Value Returned
Examples
wave = drCreateEmptyWaveform()
vec = drCreateVec( 'double '(1 2 3 4 5))
drPutWaveformXVec( wave vec )
Return to top