Property (Read Only)
Data = SCPI.CALCulate(Ch).SELected.FUNCtion.DATA
This command reads the analysis result of the SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute object, for the active trace of selected channel (Ch).
Parameter |
Data |
Description |
Indicates the array data (analysis result) of N (number of data pairs)×2. N (number of data pairs) can be read out with the SCPI.CALCulate(Ch).SELected.FUNCtion.POINts object. Where n is an integer between 1 and N.
The index of the array starts from 0. |
Data type |
Variant type (Variant) |
Dim AnaData As Variant
SCPI.CALCulate(1).PARameter(1).SELect
SCPI.CALCulate(1).SELected.FUNCtion.TYPE = "mean"
SCPI.CALCulate(1).SELected.FUNCtion.EXECute
AnaData = SCPI.CALCulate(1).SELected.FUNCtion.DATA
SCPI.CALCulate(Ch).PARameter(Tr).SELect
SCPI.CALCulate(Ch).SELected.FUNCtion.TYPE
SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute
SCPI.CALCulate(Ch).SELected.FUNCtion.POINts
No equivalent key is available on the front panel.
:CALCulate{[1]-4}[:SELected]:FUNCtion:DATA?
<numeric 1>,… ,<numeric N×2><^END>
10 OUTPUT 717;":CALC1:FUNC:POIN?"
20 ENTER 717;A
30 REDIM B(1:2*A)
40 OUTPUT 717;":CALC1:FUNC:DATA?"
50 ENTER 717;B(*)