SCPI.SENSe(Ch).SEGMent.LIST.CONTrol.DATA

Object type

Property (Read-Write)

Syntax

This option is only available in revision A.9.60 and above:

SCPI.SENSe(Ch).SEGMent.LIST.CONTrol.DATA = Data

Data = SCPI.SENSe(Ch).SEGMent.LIST.CONTrol.DATA

Description

This command sets/gets the state of each segment in the segment sweep table of selected channel (Ch).

This command is only available in revision A.9.60 and above.

Variable

Parameter

Data

Description

Indicates the state array data; where N is the number of segments and n is an integer between 1 and N.

Data = {<state1>,...  ,<state n>,.... ,<state N>}

Data type

Variant type (Variant)

Examples

Dim SegmContrData As Variant
SCPI.SENSe(1).SEGMent.LIST.CONTrol.DATA = Array(1, 1, 0, 0)
SegmContrData = SCPI.SENSe(1).SEGMent.LIST.CONTrol.DATA
SCPI.SENSe(1).SEGMent.LIST.CONTrol.DATA = SegmContrData

Related objects

SCPI.SENSe(Ch).SWEep.TYPE

Equivalent key

Sweep Setup > Edit Segment Table

Equivalent SCPI command

Syntax

:SENSe{[1]-160}:SEGMent:LIST:CONTrol:DATA <state 1>, <state n>, <state N>

:SENSe{[1]-160}:SEGMent:LIST:CONTrol:DATA?

Where N is the number of segments and n is an integer between 1 and N.

Example of use

10 DIM H(1:3)
20 OUTPUT 717;":SENS1:SEGM:DATA 5,0,1,0,0,0,3,";
30 OUTPUT 717;"1E9,3E9,11,70e3,";
40 OUTPUT 717;"3E9,4E9,51,7e3,";
50 OUTPUT 717;"4E9,6E9,11,70e3"
60 OUTPUT 717;":SENS1:SEGM:LIST:CONT:DATA 1, 0, 0"
70 OUTPUT 717;":SENS1:SEGM:LIST:CONT:DATA?"
80 ENTER 717;H(*)