Write/Read |
About Mixer/Converter Settings |
Description |
Set and read the start frequency for the mixer segment. The specified SegmentRangeMode must be set to Swept. Send Apply before sending a query (read). Learn more. |
VB Syntax |
conv.SegmentStartFrequency(index,range) = value |
Variable |
(Type) - Description |
conv |
|
index |
(Long integer) Segment for which start frequency is being set. Choose a segment between 1 and the current segment count. Use SegmentCount Property to read the current count in the Applied Mixer. |
range |
(Enum as ConverterFrequencyRange) Range for which start frequency is being set. Choose from: 0 - naInputFrequencies - set input frequency 1 - naOutputFrequencies - set output frequency 2 - naLO1Frequencies - set LO1 frequency 3 - naLO2Frequencies - set LO2 frequency 4 - naIFFrequencies - set IF frequency |
value |
(Double) Start frequency. Choose a value within the frequency range of the VNA. |
Return Type |
Double |
Default |
Start frequency of the VNA |
Examples |
mxr.SegmentStartFrequency(1,0)=1e9 'sets the input start frequency to 1 GHz |
C++ Syntax |
HRESULT get_SegmentStartFrequency(long index, tagConverterFrequencyRange range, double *value); HRESULT put_SegmentStartFrequency(long index, tagConverterFrequencyRange value, double value); |
Interface |
IConverter5 |