Write/Read
About Power Slope

PowerSlope Property


Description

Sets or returns the Power Slope value. Power Slope function increases or decreases the output power over frequency. Units are db/GHz. For example: PowerSlope = 2 will increase the power 2db/1GHZ.

 VB Syntax

object.PowerSlope = value

Variable

(Type) - Description

object

Channel (object)

or

CalSet (object) - Read-only property

value

(double) - Power Slope. Choose any number between -2 and 2.
No slope = 0

Return Type

Double

Default

0

Examples

chan.PowerSlope = 2 'Write

pwrslp = chan.PowerSlope 'Read

C++ Syntax

HRESULT get_PowerSlope(double *pVal)
HRESULT put_PowerSlope(double newVal)

Interface

IChannel

|CalSet3