SCPI.CALCulate(Ch).SELected.MIXer.XAXis

Type of object

Property (Read-Write)

Syntax

All revision:

SCPI.CALCulate(Ch).SELected.MIXer.XAXis = Param

Param = SCPI.CALCulate(Ch).SELected.MIXer.XAXis

 

In revision A.9.60 and above, the following syntax is also supported:

SCPI.CALCulate(Ch).TRACe(Tr).MIXer.XAXis = Param

Param = SCPI.CALCulate(Ch).TRACe(Tr).MIXer.XAXis

Description

This command sets/gets the X-axis frequency when the frequency offset feature is off, for the active trace of selected channel (Ch).

 

In revision A.9.60 and above, you can select the trace and set/get the X-axis frequency when the frequency offset feature is off for the trace just by executing the above TRACe(Tr) command. You do not need to execute SCPI.CALCulate(Ch).PARameter(Tr).SELect.

Variable

Parameter

Param

Description

Selects the X-axis frequency (frequency offset: off)

Data type

Character string type (String)

Range

Select from the following:

  • "NORMal": Specifies the normal frequency.

  • "RFPLo": Specifies the frequency RF + LO.

  • "RFMLo": Specifies the frequency RF - LO.

  • "LOMRf": Specifies the frequency LO - RF.

Preset value

"NORMal"

Example of use

Dim Xaxis As String
SCPI.SENSe.OFFSet.STATe = False
SCPI.CALCulate(1).SELected.MIXer.XAXis = "RFPLo"
Xaxis = SCPI.CALCulate(1).SELected.MIXer.XAXis

Related objects

SCPI.SENSe(Ch).OFFSet.STATe

SCPI.CALCulate(Ch).SELected.OFFset.XAXis

Equivalent key

Sweep Setup > Frequency Offset > X-Axis > Normal|RF+LO|RF-LO|LO-RF

Equivalent SCPI command

Syntax

All revision:

:CALCulate{[1]-160}[:SELected]:MIXer:XAXis {NORMal|RFPLo| RFMLo|LOMRf}

:CALCulate{[1]-160}[:SELected]:MIXer:XAXis?

 

In revision A.9.60 and above, the following syntax is also supported:

:CALCulate{[1]-160}:TRACe{[1]-16}:MIXer:XAXis {NORMal|RFPLo| RFMLo|LOMRf}

:CALCulate{[1]-160}:TRACe{[1]-16}:MIXer:XAXis?

Query response

{NORM|RFPL|RFML|LOMR}<newline><^END>

Example of use

10 OUTPUT 717;":CALC1:MIX:XAX RFPL"
20 OUTPUT 717;":CALC1:MIX:XAX?"
30 ENTER 717;A$