SCPI.CALCulate(Ch).SELected.FUNCtion.TTRansition

Object type

Property (Read-Write)

Syntax

All revision:

SCPI.CALCulate(Ch).SELected.FUNCtion.TTRansition = Param

Param = SCPI.CALCulate(Ch).SELected.FUNCtion.TTRansition

 

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

SCPI.CALCulate(Ch).TRACe(Tr).FUNCtion.TTRansition = Param

Param = SCPI.CALCulate(Ch).TRACe(Tr).FUNCtion.TTRansition

Description

This command sets/gets the transition type when performing the target search with the SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute object, for the active trace of the selected channel (Ch).

 

In revision A.9.60 and above, you can select the trace and set/get the transition type when performing the target search with the SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute object 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

Transition type for search

Data type

Character string type (String)

Range

Select from the following:

  • "POSitive": Specifies the positive transition.

  • "NEGative": Specifies the negative transition.

  • "BOTH": Specifies both the positive transition and the negative transition.

Preset value

"BOTH"

Examples

Dim TargTran As String
SCPI.CALCulate(1).PARameter(1).SELect
SCPI.CALCulate(1).SELected.FUNCtion.TYPE = "atar"
SCPI.CALCulate(1).SELected.FUNCtion.TTRansition = "pos"
TargTran = SCPI.CALCulate(1).SELected.FUNCtion.TTRansition

Related objects

SCPI.CALCulate(Ch).SELected.FUNCtion.DATA

SCPI.CALCulate(Ch).PARameter(Tr).SELect

SCPI.CALCulate(Ch).SELected.FUNCtion.TYPE

SCPI.CALCulate(Ch).SELected.FUNCtion.TARGet

SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute

Equivalent key

No equivalent key is available on the front panel.

Equivalent SCPI command

Syntax

All revision:

:CALCulate{[1]-160}[:SELected]:FUNCtion:TTRansition {POSitive|
NEGative|BOTH}

:CALCulate{[1]-160}[:SELected]:FUNCtion:TTRansition?

 

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

:CALCulate{[1]-160}:TRACe{[1]-16}:FUNCtion:TTRansition {POSitive|
NEGative|BOTH}

:CALCulate{[1]-160}:TRACe{[1]-16}:FUNCtion:TTRansition?

Query response

{POS|NEG|BOTH}<newline><^END>

Example of use

10 OUTPUT 717;":CALC1:FUNC:TTR NEG"
20 OUTPUT 717;":CALC1:FUNC:TTR?"
30 ENTER 717;A$