Technical data

176 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
12 Channel Commands
:CHANnel<N>:DIFFerential:SKEW
Command :CHANnel<N>:DIFFerential:SKEW <skew>
The :CHANnel<N>:DIFFerential:SKEW <skew> command sets the skew that
is applied to the differential or common mode pair of channels.
<skew> A real number for the skew value
Example This example sets the skew applied to the channel 1 - channel 3
differential channel to 10 &#956;s.
myScope.WriteString ":CHANNEL1:DIFFerential:SKEW 10E-6"
Query :CHANnel<N>:DIFFerential:SKEW?
The :CHANnel<N>:DIFFerential:SKEW? query returns the skew that is
applied to the differential or common mode pair of channels.
Returned Format
[:CHANnel<N>:DIFFerential:SKEW] <skew_value><NL>
Example This example places the current skew setting of the channel 1 - channel 3
differential channel in the variable varSkew, then prints the contents of
the variable to the computer's screen.
myScope.WriteString ":SYSTem:HEADer OFF"
myScope.WriteString ":CHANNEL1:DIFFerential:SKEW?"
varSkew = myScope.ReadNumber
Debug.Print FormatNumber(varSkew, 0)