Property (Read Only)
Data = SCPI.CALCulate(Ch).SELected.RLIMit.REPort.DATA
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)
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.
The index of the array starts from 0. |
Data type |
Variant type (Variant) |
Dim RData As Variant
SCPI.CALCulate(1).PARameter(1).SELect
RData = SCPI.CALCulate(1).SELected.RLIMit.REPort.DATA
SCPI.CALCulate(Ch).PARameter(Tr).SELect
SCPI.CALCulate(Ch).SELected.RLIMit.STATe
No equivalent key is available on the front panel.
:CALCulate{[1]-4}[:SELected]:RLIMit:REPort[:DATA]?
{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.
10 DIM B(1:2,1:3)
20 OUTPUT 717;":CALC1:RLIM:REP?"
30 ENTER 717;A,B(*)