Keysight Pathwave 89600 VSA .NET API
SetLowerMask Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > FrequencyMaskTrigger Class : SetLowerMask Method


frequencies
Frequencies in Hz. If FrequencyReferenceStyle is set to FrequencyMaskTriggerFrequencyReference.Center then values are Hz relative to Center. If FrequencyReferenceStyle is set to FrequencyMaskTriggerFrequencyReference.Absolute then values are absolute Hz. This parameter must be the same length as the amplitudes parameter. A value of null may be used to clear the mask.
amplitudes
Amplitudes. If AmplitudeReferenceStyle is set to FrequencyMaskTriggerAmplitudeReference.Range then values are in dB relative to the Range of the trigger channel. If AmplitudeReferenceStyle is set to FrequencyMaskTriggerAmplitudeReference.Absolute then values are in dBm. This parameter must be the same length as the frequencies parameter. A value of null may be used to clear the mask.

Glossary Item Box

Sets the lower mask for the frequency mask trigger.

Syntax

Visual Basic (Declaration) 
Public MustOverride Sub SetLowerMask( _
   ByVal frequencies As IEnumerable(Of Double), _
   ByVal amplitudes As IEnumerable(Of Double) _
) 
C# 
public abstract void SetLowerMask( 
   IEnumerable<double> frequencies,
   IEnumerable<double> amplitudes
)
C++/CLI 
public:
abstract void SetLowerMask( 
   IEnumerable<double>^ frequencies,
   IEnumerable<double>^ amplitudes
) 

Parameters

frequencies
Frequencies in Hz. If FrequencyReferenceStyle is set to FrequencyMaskTriggerFrequencyReference.Center then values are Hz relative to Center. If FrequencyReferenceStyle is set to FrequencyMaskTriggerFrequencyReference.Absolute then values are absolute Hz. This parameter must be the same length as the amplitudes parameter. A value of null may be used to clear the mask.
amplitudes
Amplitudes. If AmplitudeReferenceStyle is set to FrequencyMaskTriggerAmplitudeReference.Range then values are in dB relative to the Range of the trigger channel. If AmplitudeReferenceStyle is set to FrequencyMaskTriggerAmplitudeReference.Absolute then values are in dBm. This parameter must be the same length as the frequencies parameter. A value of null may be used to clear the mask.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also