RelaxISPlugin_AxisValueGetValue Method |
Should calculate and return the real value from the supplied impedance and converter.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract double GetValue(
double Frequency,
double ZReal,
double ZImag,
RelaxISPlugin_TransferFunction Converter
)
Public MustOverride Function GetValue (
Frequency As Double,
ZReal As Double,
ZImag As Double,
Converter As RelaxISPlugin_TransferFunction
) As Double
Dim instance As RelaxISPlugin_AxisValue
Dim Frequency As Double
Dim ZReal As Double
Dim ZImag As Double
Dim Converter As RelaxISPlugin_TransferFunction
Dim returnValue As Double
returnValue = instance.GetValue(Frequency,
ZReal, ZImag, Converter)
Parameters
- Frequency Double
- The frequency of the impedance that needs to be transformed.
- ZReal Double
- The real part of the impedance that needs to be transformed.
- ZImag Double
- The imaginary part of the impedance that needs to be transformed.
- Converter RelaxISPlugin_TransferFunction
- The converter that has to be used for the transformation.
Return Value
DoubleA real value that is for example plotted on a graph's axis.
See Also