Write/Read
About Receiver Cal

LogMagnitudeOffset Property   Superseded


Description

Note: This property is replaced by DoReceiverPowerCal Method.

For Receiver Calibration - Sets or returns the value to offset the normalized unratioed power measurement data. The unratioed power measurement is effectively calibrated to the power level specified by the value of LogMagnitudeOffset as soon as the Normalization property is set to ON after calling the DataToDivisor method.

To offset the data trace magnitude a specified value, use MagnitudeOffset Property

 VB Syntax

meas.LogMagnitudeOffset = value

Variable

(Type) - Description

meas

(object) - A Measurement object

value

(double)  - Offset value in dBm.

Return Type

Double

Default

0

Examples

meas.LogMagnitudeOffset = -10 'Write (-10 dBm)

calpower = meas.LogMagnitudeOffset 'Read
meas.DataToDivisor 'Store meas data as measurement divisor
meas.Normalize = 1 'Measurement is now calibrated to –10 dBm

C++ Syntax

HRESULT put_LogMagnitudeOffset(double newVal);

HRESULT get_LogMagnitudeOffset(double *pVal);

Interface

IMeasurement