Write/Read |
About SA Application |
Description |
Set and read the DC sweep order. The SA may be programmed to loop through a series of spectrum measurements at multiple RF source frequencies, multiple RF source powers, and multiple DC voltages. These settings determine whether the DC sources are swept before the RF power and frequencies are swept, or whether the DC sources are swept after the RF power and frequencies are swept. |
VB Syntax |
sa.DCSourceSweepFirstDimension (source) = value |
Variable |
(Type) - Description |
sa |
A SpectrumAnalyzer (object) |
value |
(Enum as NASADCSweepFirstTypes) Choose from: 0 - naSADCFirst - Sweep through each DC voltage step first then sweep through the next frequency. 1 - naSARFFirst - Sweep through each frequency step first then sweep through the next DC voltage. |
Return Type |
Enum |
Default |
naSADCFirst |
Examples |
sa.DCSourceSweepFirstDimension("Port 1")= naSADCFirst 'Write |
value = sa.DCSourceSweepFirstDimension("Port 1") 'Read |
|
C++ Syntax |
HRESULT put_DCSourceSweepFirstDimension(tagNASADCSweepFirstTypes first); HRESULT get_DCSourceSweepFirstDimension(tagNASADCSweepFirstTypes* first); |
Interface |
ISpectrumAnalyzer |