Property (Read Only)
Data = SCPI.SENSe(Ch).FREQuency.DATA
This command reads the frequencies at all measurement points for the selected channel ( Ch).
Parameter |
Data |
Description |
Indicates the array data (frequency) of NOP (number of measurement points). Where n is an integer between 1 and NOP.
The index of the array starts from 0. |
Data type |
Variant type (Variant) |
Dim FreqData As Variant
SCPI.SENSe(1).SWEep.POINts = 201
FreqData = SCPI.SENSe(1).FREQuency.DATA
No equivalent key is available on the front panel.
:SENSe{[1]-4}:FREQuency:DATA?
{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.
10 DIM A(1:201)
20 OUTPUT 717;":SENS1:FREQ:DATA?"
30 ENTER 717;A(*)