Write/Read |
About Mixer/Converter Settings |
Description |
Set and read the CW Frequency for mixer segments. The specified SegmentRangeMode must be set to Fixed. Send Apply before sending a query (read). Learn more. |
VB Syntax |
conv.SegmentFixedFrequency(index,range) = value |
Variable |
(Type) - Description |
conv |
|
index |
(Long integer) Segment for which fixed 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 fixed 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) CW Frequency. Choose a value within the frequency range of the VNA. |
Return Type |
Double |
Default |
Center frequency of the VNA |
Examples |
mxr.SegmentFixedFrequency(1,0)=1e9 'sets the input frequency to 1 GHz |
C++ Syntax |
HRESULT get_SegmentFixedFrequency(long index, tagConverterFrequencyRange range, double *value); HRESULT put_SegmentFixedFrequency(long index, tagConverterFrequencyRange value, double value); |
Interface |
IConverter5 |