SignalModifySignalProperties Method |
Create a new signal by modifying the properties of this signal.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 19.1.398.0 (19.1.398.0)
Syntaxpublic Signal ModifySignalProperties(
double power,
double frequency,
double lowerBandwidthLimit,
double upperBandwidthLimit,
double noiseTemperature,
double lowerNoiseBandwidthLimit,
double upperNoiseBandwidthLimit
)
Public Function ModifySignalProperties (
power As Double,
frequency As Double,
lowerBandwidthLimit As Double,
upperBandwidthLimit As Double,
noiseTemperature As Double,
lowerNoiseBandwidthLimit As Double,
upperNoiseBandwidthLimit As Double
) As Signal
public:
Signal^ ModifySignalProperties(
double power,
double frequency,
double lowerBandwidthLimit,
double upperBandwidthLimit,
double noiseTemperature,
double lowerNoiseBandwidthLimit,
double upperNoiseBandwidthLimit
)
member ModifySignalProperties :
power : float *
frequency : float *
lowerBandwidthLimit : float *
upperBandwidthLimit : float *
noiseTemperature : float *
lowerNoiseBandwidthLimit : float *
upperNoiseBandwidthLimit : float -> Signal
Parameters
- power
- Type: SystemDouble
The new total power, in watts. - frequency
- Type: SystemDouble
The new center frequency, in hertz. - lowerBandwidthLimit
- Type: SystemDouble
The new offset from the center frequency to the lowest frequency, in hertz. (usually negative) - upperBandwidthLimit
- Type: SystemDouble
The new offset from the center frequency to the highest frequency, in hertz. - noiseTemperature
- Type: SystemDouble
The new noise temperature, in kelvin. - lowerNoiseBandwidthLimit
- Type: SystemDouble
The new offset from the center frequency to the lowest frequency
at which there is significant noise, in hertz. - upperNoiseBandwidthLimit
- Type: SystemDouble
The new offset from the center frequency to the lowest frequency
at which there is significant noise, in hertz.
Return Value
Type:
SignalThe modified signal.
Exceptions
RemarksThe modified Signal retains any additional
Data on the original signal.
See Also