SCPI.SENSe(Ch).FREQuency.DATA

Object type

Property (Read Only)

Syntax

Data = SCPI.SENSe(Ch).FREQuency.DATA

Description

This command reads the frequencies at all measurement points for the selected channel ( Ch).

Variable

Parameter

Data

Description

Indicates the array data (frequency) of NOP (number of measurement points). Where n is an integer between 1 and NOP.

  • Data(n-1): Frequency at the n-th measurement point

The index of the array starts from 0.

Data type

Variant type (Variant)

Examples

Dim FreqData As Variant
SCPI.SENSe(1).SWEep.POINts = 201
FreqData = SCPI.SENSe(1).FREQuency.DATA

Related objects

SCPI.SENSe(Ch).SWEep.POINts

Equivalent key

No equivalent key is available on the front panel.

Equivalent SCPI command

Syntax

:SENSe{[1]-4}:FREQuency:DATA?

Query response

{numeric 1},… ,{numeric NOP}<newline><^END>

 

Description

{numeric n}

Frequency at the n-th measurement point

Where NOP is the number of measurement points and n is an integer between 1 and NOP.

Example of use

10 DIM A(1:201)
20 OUTPUT 717;":SENS1:FREQ:DATA?"
30 ENTER 717;A(*)