SCPI.CALCulate(Ch).SELected.RLIMit.REPort.DATA

Object type    

Property (Read Only)

Syntax         

Data = SCPI.CALCulate(Ch).SELected.RLIMit.REPort.DATA

Description

This command reads the ripple value of the ripple test for the active trace (specified with the SCPI.CALCulate(Ch).PARameter(Tr).SELect command) of the selected channel ( Ch).  

The data transfer format when this command is executed depends on the setting with the SCPI.FORMat.DATA command.(Read only)

Variable

Parameter

Data

Description

Indicates the array data (for ripple line) of 1 + Num (number of limit lines)×3. Where n is an integer between 1 and 12.

  • Data(0) :Number of ripple limit line.

  • Data(n×3-2) :Number of ripple limit bands.

  • Data(n×3-1) :Ripple value.

  • Data(n×3) :Results of ripple test.
    Select from the following.
    0:PASS
    1:FAIL.

The index of the array starts from 0.

Data type

Variant type (Variant)

Examples

Dim RData As Variant
SCPI.CALCulate(1).PARameter(1).SELect
RData = SCPI.CALCulate(1).SELected.RLIMit.REPort.DATA

Related objects

SCPI.CALCulate(Ch).PARameter(Tr).SELect

SCPI.CALCulate(Ch).SELected.RLIMit.STATe

Equivalent key

No equivalent key is available on the front panel.

Equivalent SCPI command

Syntax

:CALCulate{[1]-4}[:SELected]:RLIMit:REPort[:DATA]?

Query response

{numeric 1},… ,{numeric 1+N×3}<newline><^END>

Type

Description

<numeric 1>

Number of ripple limit line (1 to 12)

<numeric 1+(n×3)-2>

Number of ripple limit bands

<numeric 1+(n×3)-1>

Ripple value

<numeric 1+(n×3)>

Results of ripple test

0: Pass

1: Fail

Where N is the number of lines (specified with <numeric 1>) and n is an integer between 1 and 12.

Example of use

10 DIM B(1:2,1:3)
20 OUTPUT 717;":CALC1:RLIM:REP?"
30 ENTER 717;A,B(*)