SCPI.CALCulate(Ch).SELected.FUNCtion.DATA

E5071C

SCPI.CALCulate(Ch).SELected.FUNCtion.DATA

对象类型

属性(只读

语法

Data = SCPI.CALCulate(Ch).SELected.FUNCtion.DATA

说明

这个命令针对选择通道(Ch)的激活迹线读取SCPI.CALCulate(Ch).SELected.FUNCtion.EXECute对象的分析结果。

变量

参数

Data

说明

表示N(数据对个数)x2的数组数据(分析结果)。SCPI.CALCulate(Ch).SELected.FUNCtion.POINts对象能读取N(数据对个数)。此处n是1到N之间的整数。

数组索引从0开始。

数据类型

变量类型(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

等效键

前面板上没有等效键。

等效SCPI命令

语法

:CALCulate{[1]-36}[:SELected]:FUNCtion:DATA?

查询响应

<numeric 1>,?nbsp;,<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(*)