SCPI.SENSe(Ch).SEGMent.LIST.BWIDth.PORT(Pt).RESolution

Object Type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).SEGMent.LIST.BWIDth.PORT(Pt).RESolution = Data

Data = SCPI.SENSe(Ch).SEGMent.LIST.BWIDth.PORT(Pt).RESolution

Description

This command sets/gets the IFBW of each segment for the selected port (Pt) and channel (Ch). This command is supported in revision A.11.20 and above.

Variable

Parameter

Data

Description

Sets/gets the port IFBW of each segment

Data type

Variant type (Variant)

Example of use

Dim SegmData As Variant

Dim IFVal1 As Variant

Dim IFVal2 As Variant

SCPI.SENSe(1).SEGMent.DATA = Array(5,0,0,0,0,0,2,100E6,2E9,31,2E9,3E9,100)
SCPI.SENSe(1).SEGMent.LIST.BWIDth.PORT.STATe = True

SCPI.SENSe(1).SEGMent.LIST.BWIDth.PORT(1).RESolution =Array(1E3, 7E3)

SCPI.SENSe(1).SEGMent.LIST.BWIDth.PORT(2).RESolution = Array(7E3, 1E4)
SegmData = SCPI.SENSe(1).SEGMent.DATA

IFVal1 = SCPI.SENSe(1).SEGMent.LIST.BWIDth.PORT(1).RESolution

IFVal2 = SCPI.SENSe(1).SEGMent.LIST.BWIDth.PORT(2).RESolution

Related objects

SCPI.SENSe(Ch).SEGMent.DATA

SCPI.SENSe(Ch).SEGMent.LIST.BWIDth.PORT.STATe

Equivalent key

Sweep Setup > Edit Segment Table > List Port IFBW

Equivalent SCPI command

Syntax

:SENSe{[1]-160}:SEGMent:LIST:BWIDth:PORT{[1]-4}[:RESolution] <value1>,<value2>,...,<value N>

:SENSe{[1]-160}:SEGMent:LIST:BWIDth:PORT{[1]-4}[:RESolution]?

Query response

{numeric 1},{numeric 2},...,{numeric N}<newline><^END>

Example of use

10 DIM I(1:2,1:5)
20 DIM J(2)

30 DIM K(2)
40 OUTPUT 717;":SENS1:SEGM:DATA 5,0,0,0,0,0,2,1E6,2E9,31,2E9,3E9,100"

50 OUTPUT 717;":SENS1:SEGM:LIST:BWID:PORT:STAT ON"
60 OUTPUT 717;":SENS1:SEGM:LIST:BWID:PORT1 1e3, 7e3"

70 OUTPUT 717;":SENS1:SEGM:LIST:BWID:PORT2 7e3, 1e4"

80 OUTPUT 717;":SENS1:SEGM:DATA?"

90 ENTER 717;A,B,C,D,E,F,G,H,I(*)

100 OUTPUT 717;":SENS1:SEGM:LIST:BWID:PORT1?"

110 ENTER 717,J(*)

120 OUTPUT 717;":SENS1:SEGM:LIST:BWID:PORT2?"

130 ENTER 717;K(*)