Interface IComplex
Complex interface.
Namespace: OmicronLab.MaterialAnalyzer.AutomationInterface.DataTypes.Interfaces
Assembly: OmicronLab.MaterialAnalyzer.AutomationInterface.dll (1.60.627.0)
Syntax
public interface IComplex
Properties
Imaginary
Gets the imaginary value from the complex value.
Declaration
double Imaginary { get; }
Property Value
Type | Description |
---|---|
System.Double | The imaginary value. |
Magnitude
Gets the magnitude.
Declaration
double Magnitude { get; }
Property Value
Type | Description |
---|---|
System.Double | The magnitude. |
MagnitudeDB
Gets the magnitude in DB.
Declaration
double MagnitudeDB { get; }
Property Value
Type | Description |
---|---|
System.Double | The magnitude in DB. |
Phase
Gets the phase.
Declaration
double Phase { get; }
Property Value
Type | Description |
---|---|
System.Double | The phase. |
Real
Gets the real value from the complex value.
Declaration
double Real { get; }
Property Value
Type | Description |
---|---|
System.Double | The real value. |