BGC Tools
|
Represents a complex number with double-precision floating point components More...
Public Member Functions | |
Complex64 (double real, double imaginary) | |
Initializes a new Complex64 structure using the specified real and imaginary values. More... | |
Complex64 | Square () |
The Square (power 2) of this Complex64 More... | |
Complex64 | Rotation (double phase) |
Retuns the Complex64 number, rotated by phase radians, or exp(i*phase) More... | |
double | RealRotation (double phase) |
Retuns the real value of the Complex64 number after rotation by phase radians, or exp(i*phase) More... | |
bool | Equals (in Complex64 value) |
Returns a value that indicates whether the current instance and a specified complex number have the same value. More... | |
bool IEquatable< Complex64 >. | Equals (Complex64 other) |
Returns a value that indicates whether the current instance and a specified complex number have the same value. More... | |
override bool | Equals (object obj) |
Returns a value that indicates whether the current instance and a specified object have the same value. More... | |
override int | GetHashCode () |
Returns the hash code for the current Complex64 object. More... | |
string | ToString (string format) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format for its real and imaginary parts. More... | |
string | ToString (IFormatProvider provider) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified culture-specific formatting information. More... | |
string | ToString (string format, IFormatProvider provider) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format and culture-specific format information for its real and imaginary parts. More... | |
override string | ToString () |
Converts the value of the current complex number to its equivalent string representation in Cartesian form. More... | |
bool | IsReal () |
Gets a value indicating whether the provided Complex64 is real. More... | |
bool | IsRealNonNegative () |
Gets a value indicating whether the provided Complex64 is real and not negative, that is >= 0. More... | |
bool | IsZero () |
Gets a value indicating whether the Complex64 is zero. More... | |
bool | IsOne () |
Gets a value indicating whether the Complex64 is one. More... | |
bool | IsImaginaryOne () |
Gets a value indicating whether the Complex64 is the imaginary unit. More... | |
bool | IsInfinity () |
Gets a value indicating whether the provided Complex64 evaluates to an infinite value. More... | |
bool | IsNaN () |
Gets a value indicating whether the provided Complex64evaluates to a value that is not a number. More... | |
Complex64 | Power (in Complex64 exponent) |
Raise this Complex64 to the given value. More... | |
Complex64 | NaturalLogarithm () |
Natural Logarithm of this Complex64 (Base E). More... | |
Complex64 | CommonLogarithm () |
Common Logarithm of this Complex64 (Base 10). More... | |
Complex64 | Logarithm (double baseValue) |
Logarithm of this Complex64 with custom base. More... | |
Complex64 | Exponential () |
Exponential of this Complex64 (exp(x), E^x). More... | |
double | RealProduct (in Complex64 other) |
Returns the real component of the product of this Complex64 with other. More... | |
Complex64 | Conjugate () |
Computes the conjugate of a complex number and returns the result. More... | |
Complex64 | Reciprocal () |
Returns the multiplicative inverse of a complex number. More... | |
Complex64 | SquareRoot () |
The Square Root (power 1/2) of this Complex64 More... | |
Static Public Member Functions | |
static double | Abs (in Complex64 value) |
Gets the absolute value (or magnitude) of a complex number. More... | |
static Complex64 | Acos (in Complex64 value) |
Trigonometric principal Arc Cosine of this Complex64 number. More... | |
static Complex64 | Add (in Complex64 left, in Complex64 right) |
Returns the sum of the two Complex64 inputs More... | |
static Complex64 | Asin (in Complex64 value) |
Trigonometric principal Arc Sine of this Complex64 number. More... | |
static Complex64 | Atan (in Complex64 value) |
Trigonometric principal Arc Tangent of this Complex64 number. More... | |
static Complex64 | Conjugate (in Complex64 value) |
Computes the conjugate of a complex number and returns the result. More... | |
static Complex64 | Cos (in Complex64 value) |
Trigonometric Cosine of a Complex64 number. More... | |
static Complex64 | Cosh (in Complex64 value) |
Hyperbolic Cosine of a Complex64 number. More... | |
static Complex64 | Divide (in Complex64 dividend, in Complex64 divisor) |
Divides one complex number by another and returns the result. More... | |
static Complex64 | Exp (in Complex64 value) |
Returns e raised to the power specified by a complex number. More... | |
static Complex64 | FromPolarCoordinates (double magnitude, double phase) |
Creates a complex number from a point's polar coordinates. More... | |
static Complex64 | Log (in Complex64 value) |
Returns the natural (base e) logarithm of a specified complex number. More... | |
static Complex64 | Log (in Complex64 value, double baseValue) |
Returns the logarithm of a specified complex number in a specified base. More... | |
static Complex64 | Log10 (in Complex64 value) |
Returns the base-10 logarithm of a specified complex number. More... | |
static Complex64 | Multiply (in Complex64 left, in Complex64 right) |
Returns the product of two complex numbers. More... | |
static Complex64 | Negate (in Complex64 value) |
Returns the additive inverse of a specified complex number. More... | |
static Complex64 | Pow (in Complex64 value, double power) |
Returns a specified complex number raised to a power specified by a double-precision doubleing-point number. More... | |
static Complex64 | Pow (in Complex64 value, in Complex64 power) |
Returns a specified complex number raised to a power specified by a complex number. More... | |
static Complex64 | Reciprocal (in Complex64 value) |
Returns the multiplicative inverse of a complex number. More... | |
static Complex64 | Sin (in Complex64 value) |
Trigonometric Sine of a Complex64 number. More... | |
static Complex64 | Sinh (in Complex64 value) |
Hyperbolic Sine of a Complex64 number. More... | |
static Complex64 | Sqrt (in Complex64 value) |
The Square Root of a complex number More... | |
static Complex64 | Subtract (in Complex64 left, Complex64 right) |
The difference between two Complex64 numbers; More... | |
static Complex64 | Tan (in Complex64 value) |
Trigonometric Tangent of a Complex64 number. More... | |
static Complex64 | Tanh (in Complex64 value) |
Hyperbolic Tangent of a Complex64 number. More... | |
static Complex64 | operator+ (in Complex64 left, in Complex64 right) |
Adds two complex numbers. More... | |
static Complex64 | operator- (in Complex64 value) |
Returns the additive inverse of a specified complex number. More... | |
static Complex64 | operator- (in Complex64 left, in Complex64 right) |
Subtracts a complex number from another complex number. More... | |
static Complex64 | operator* (in Complex64 left, in Complex64 right) |
Multiplies two specified complex numbers. More... | |
static Complex64 | operator/ (in Complex64 dividend, in Complex64 divisor) |
Divides a specified complex number by another specified complex number. More... | |
static bool | operator== (in Complex64 left, in Complex64 right) |
Returns a value that indicates whether two complex numbers are equal. More... | |
static bool | operator!= (in Complex64 left, in Complex64 right) |
Returns a value that indicates whether two complex numbers are not equal. More... | |
static implicit | operator Complex64 (Complex32 value) |
Defines an implicit conversion of an unsigned byte to a complex number. More... | |
static implicit | operator Complex64 (byte value) |
Defines an implicit conversion of an unsigned byte to a complex number. More... | |
static implicit | operator Complex64 (float value) |
Defines an implicit conversion of a single-precision floating-point number to a complex number. More... | |
static implicit | operator Complex64 (double value) |
Defines an implicit conversion of a double-precision floating-point number to a complex number. More... | |
static implicit | operator Complex64 (sbyte value) |
Defines an implicit conversion of a signed byte to a complex number. More... | |
static implicit | operator Complex64 (ulong value) |
Defines an implicit conversion of a 64-bit unsigned integer to a complex number. More... | |
static implicit | operator Complex64 (uint value) |
Defines an implicit conversion of a 32-bit unsigned integer to a complex number. More... | |
static implicit | operator Complex64 (ushort value) |
Defines an implicit conversion of a 16-bit unsigned integer to a complex number. More... | |
static implicit | operator Complex64 (long value) |
Defines an implicit conversion of a 64-bit signed integer to a complex number. More... | |
static implicit | operator Complex64 (int value) |
Defines an implicit conversion of a 32-bit signed integer to a complex number. More... | |
static implicit | operator Complex64 (short value) |
Defines an implicit conversion of a 16-bit signed integer to a complex number. More... | |
static | operator Complex64 (decimal value) |
Defines an explicit conversion of a System.Decimal value to a complex number. More... | |
Data Fields | |
double | Imaginary => _imag |
Gets the imaginary component of the current System.Numerics.Complex64 object. More... | |
double | Real => _real |
Gets the real component of the current System.Numerics.Complex64 object. More... | |
double | Phase => _imag == 0.0 && _real < 0.0 ? Math.PI : Math.Atan2(_imag, _real) |
Gets the phase of a complex number in radians. More... | |
double | MagnitudeSquared => (_real * _real) + (_imag * _imag) |
Gets the squared magnitude (or squared absolute value) of a complex number. More... | |
Static Public Attributes | |
static readonly Complex64 | Zero = new Complex64(0.0, 0.0) |
Returns a new Complex64 instance with a real number equal to zero and an imaginary number equal to zero. More... | |
static readonly Complex64 | One = new Complex64(1.0, 0.0) |
Returns a new Complex64 instance with a real number equal to one and an imaginary number equal to zero. More... | |
static readonly Complex64 | ImaginaryOne = new Complex64(0.0, 1.0) |
Returns a new Complex64 instance with a real number equal to zero and an imaginary number equal to one. More... | |
static readonly Complex64 | PositiveInfinity = new Complex64(double.PositiveInfinity, double.PositiveInfinity) |
Returns a new Complex64 instance with real and imaginary numbers positive infinite. More... | |
static readonly Complex64 | NaN = new Complex64(double.NaN, double.NaN) |
Returns a new Complex64 instance with real and imaginary numbers not a number. More... | |
Properties | |
double | Magnitude [get] |
Gets the magnitude (or absolute value) of a complex number. More... | |
Static Private Member Functions | |
static Complex64 | InternalDiv (double a, double b, double c, double d, bool swapped) |
Helper method for dividing. More... | |
Private Attributes | |
readonly double | _real |
The real component of the complex number. More... | |
readonly double | _imag |
The imaginary component of the complex number. More... | |
Represents a complex number with double-precision floating point components
Definition at line 39 of file Complex64.cs.
|
inline |
Initializes a new Complex64 structure using the specified real and imaginary values.
Definition at line 82 of file Complex64.cs.
|
static |
Gets the absolute value (or magnitude) of a complex number.
Referenced by BGC.Mathematics.Complex64.SquareRoot().
Trigonometric principal Arc Cosine of this Complex64 number.
value | The complex value. |
Definition at line 152 of file Complex64.cs.
Returns the sum of the two Complex64 inputs
Trigonometric principal Arc Sine of this Complex64 number.
value | The complex value. |
Definition at line 173 of file Complex64.cs.
Trigonometric principal Arc Tangent of this Complex64 number.
value | The complex value. |
Definition at line 189 of file Complex64.cs.
References BGC.Mathematics.Complex64.Conjugate().
|
inline |
Common Logarithm of this Complex64 (Base 10).
Definition at line 766 of file Complex64.cs.
References BGC.Mathematics.Complex64.Log().
Referenced by BGC.Mathematics.Complex64.Cosh().
Computes the conjugate of a complex number and returns the result.
Referenced by BGC.Mathematics.Complex64.Atan(), and BGC.Mathematics.Fourier.BluesteinForward().
Complex64 BGC.Mathematics.Complex64.Conjugate | ( | ) |
Computes the conjugate of a complex number and returns the result.
Trigonometric Cosine of a Complex64 number.
value | The complex value. |
Definition at line 206 of file Complex64.cs.
References BGC.Mathematics.GeneralMath.Cosh(), and BGC.Mathematics.GeneralMath.Sinh().
Referenced by BGC.Audio.Filters.PhaseVocoder.PhaseVocoder(), and BGC.Mathematics.Complex64.Rotation().
Hyperbolic Cosine of a Complex64 number.
value | The complex value. |
Definition at line 224 of file Complex64.cs.
References BGC.Mathematics.Complex64.CommonLogarithm(), BGC.Mathematics.GeneralMath.Cosh(), BGC.Mathematics.Complex64.Exponential(), BGC.Mathematics.Complex64.Logarithm(), BGC.Mathematics.Complex64.NaturalLogarithm(), BGC.Mathematics.Complex64.Power(), BGC.Mathematics.Complex64.Reciprocal(), and BGC.Mathematics.GeneralMath.Sinh().
|
static |
Divides one complex number by another and returns the result.
|
inline |
Returns a value that indicates whether the current instance and a specified complex number have the same value.
Definition at line 467 of file Complex64.cs.
References BGC.Mathematics.GeneralMath.Approximately().
bool IEquatable<Complex64>. BGC.Mathematics.Complex64.Equals | ( | Complex64 | other | ) |
Returns a value that indicates whether the current instance and a specified complex number have the same value.
override bool BGC.Mathematics.Complex64.Equals | ( | object | obj | ) |
Returns a value that indicates whether the current instance and a specified object have the same value.
Returns e raised to the power specified by a complex number.
Referenced by BGC.Mathematics.Complex64.Exponential().
|
inline |
Exponential of this Complex64 (exp(x), E^x).
Definition at line 788 of file Complex64.cs.
References BGC.Mathematics.Complex64._real, and BGC.Mathematics.Complex64.Exp().
Referenced by BGC.Mathematics.Complex64.Cosh().
|
static |
Creates a complex number from a point's polar coordinates.
Referenced by BGC.Audio.Filters.CarlileShuffler._Initialize(), BGC.Audio.AnalyticStreams.AnalyticFrequencyModulationFilter.AnalyticFrequencyModulationFilter(), BGC.Audio.AnalyticStreams.AnalyticStreamFrequencyShifter.AnalyticStreamFrequencyShifter(), BGC.Audio.AnalyticStreams.AnalyticWave.AnalyticWave(), BGC.Audio.ComplexCarrierTone.ComplexCarrierTone(), BGC.Audio.Synthesis.NoiseAudioClip.CreateSideBands(), BGC.Audio.AnalyticStreams.AnalyticNoiseStream.CreateSideBands(), BGC.Audio.Synthesis.STMAudioClip.CreateSideBands(), BGC.Audio.Synthesis.STMAudioClip.ExpCarrierToneSideBands(), BGC.Audio.Filters.FramedPhaseReencoder.FramedPhaseReencoder(), BGC.Audio.Filters.FrequencyModulationFilter.FrequencyModulationFilter(), BGC.Audio.Filters.PhaseVocoder.PhaseVocoder(), BGC.Audio.FrequencyDomain.Populate(), BGC.Audio.AnalyticStreams.AnalyticStreamFrequencyShifter.Read(), BGC.Audio.AnalyticStreams.AnalyticWave.Read(), BGC.Audio.Synthesis.SineWave.Read(), BGC.Audio.Synthesis.SineWave.ReadNextSample(), BGC.Audio.AnalyticStreams.AnalyticStreamFrequencyShifter.Reset(), BGC.Audio.AnalyticStreams.AnalyticWave.Reset(), BGC.Audio.Synthesis.SineWave.Reset(), BGC.Audio.AnalyticStreams.AnalyticStreamFrequencyShifter.Seek(), BGC.Audio.AnalyticStreams.AnalyticWave.Seek(), BGC.Audio.Synthesis.SineWave.Seek(), BGC.Audio.Synthesis.SineWave.SineWave(), BGC.Tests.SynthesisTests.TestFDComposer(), BGC.Tests.SynthesisTests.TestFDComposerPure(), BGC.Audio.Filters.SinglePassPhaseReencoder.TimeShift(), and BGC.Tests.SynthesisTests.TryAllpassFilters().
|
inline |
Returns the hash code for the current Complex64 object.
Definition at line 496 of file Complex64.cs.
|
inlinestaticprivate |
Helper method for dividing.
a | Re first |
b | Im first |
c | Re second |
d | Im second |
Definition at line 870 of file Complex64.cs.
bool BGC.Mathematics.Complex64.IsImaginaryOne | ( | ) |
Gets a value indicating whether the Complex64 is the imaginary unit.
bool BGC.Mathematics.Complex64.IsInfinity | ( | ) |
Gets a value indicating whether the provided Complex64 evaluates to an infinite value.
True if it either evaluates to a complex infinity or to a directed infinity.
bool BGC.Mathematics.Complex64.IsNaN | ( | ) |
Gets a value indicating whether the provided Complex64evaluates to a value that is not a number.
bool BGC.Mathematics.Complex64.IsOne | ( | ) |
Gets a value indicating whether the Complex64 is one.
bool BGC.Mathematics.Complex64.IsReal | ( | ) |
Gets a value indicating whether the provided Complex64 is real.
bool BGC.Mathematics.Complex64.IsRealNonNegative | ( | ) |
Gets a value indicating whether the provided Complex64 is real and not negative, that is >= 0.
bool BGC.Mathematics.Complex64.IsZero | ( | ) |
Gets a value indicating whether the Complex64 is zero.
Returns the natural (base e) logarithm of a specified complex number.
Referenced by BGC.Audio.Synthesis.STMAudioClip._Initialize(), and BGC.Mathematics.Complex64.CommonLogarithm().
Returns the logarithm of a specified complex number in a specified base.
Returns the base-10 logarithm of a specified complex number.
Complex64 BGC.Mathematics.Complex64.Logarithm | ( | double | baseValue | ) |
Logarithm of this Complex64 with custom base.
Referenced by BGC.Mathematics.Complex64.Cosh().
|
static |
Returns the product of two complex numbers.
|
inline |
Natural Logarithm of this Complex64 (Base E).
Definition at line 752 of file Complex64.cs.
Referenced by BGC.Mathematics.Complex64.Cosh().
Returns the additive inverse of a specified complex number.
Defines an implicit conversion of an unsigned byte to a complex number.
|
static |
Defines an implicit conversion of an unsigned byte to a complex number.
|
static |
Defines an implicit conversion of a single-precision floating-point number to a complex number.
|
static |
Defines an implicit conversion of a double-precision floating-point number to a complex number.
value |
|
static |
Defines an implicit conversion of a signed byte to a complex number.
|
static |
Defines an implicit conversion of a 64-bit unsigned integer to a complex number.
|
static |
Defines an implicit conversion of a 32-bit unsigned integer to a complex number.
|
static |
Defines an implicit conversion of a 16-bit unsigned integer to a complex number.
|
static |
Defines an implicit conversion of a 64-bit signed integer to a complex number.
|
static |
Defines an implicit conversion of a 32-bit signed integer to a complex number.
|
static |
Defines an implicit conversion of a 16-bit signed integer to a complex number.
|
explicitstatic |
Defines an explicit conversion of a System.Decimal value to a complex number.
Returns a value that indicates whether two complex numbers are not equal.
|
static |
Multiplies two specified complex numbers.
|
static |
Adds two complex numbers.
Returns the additive inverse of a specified complex number.
|
static |
Subtracts a complex number from another complex number.
|
inlinestatic |
Divides a specified complex number by another specified complex number.
Definition at line 556 of file Complex64.cs.
References BGC.Mathematics.Complex32.Imaginary, BGC.Mathematics.Complex64.Real, and BGC.Mathematics.Complex32.Real.
Returns a value that indicates whether two complex numbers are equal.
Returns a specified complex number raised to a power specified by a double-precision doubleing-point number.
Returns a specified complex number raised to a power specified by a complex number.
Raise this Complex64 to the given value.
exponent | The exponent. |
Definition at line 721 of file Complex64.cs.
References BGC.Mathematics.Complex64.Imaginary.
Referenced by BGC.Mathematics.Complex64.Cosh().
double BGC.Mathematics.Complex64.RealProduct | ( | in Complex64 | other | ) |
Returns the real component of the product of this Complex64 with other.
Referenced by BGC.Audio.Filters.FrequencyModulationFilter.Read().
double BGC.Mathematics.Complex64.RealRotation | ( | double | phase | ) |
Retuns the real value of the Complex64 number after rotation by phase radians, or exp(i*phase)
Returns the multiplicative inverse of a complex number.
Referenced by BGC.Mathematics.Complex64.Cosh().
Complex64 BGC.Mathematics.Complex64.Reciprocal | ( | ) |
Returns the multiplicative inverse of a complex number.
|
inline |
Retuns the Complex64 number, rotated by phase radians, or exp(i*phase)
Definition at line 450 of file Complex64.cs.
References BGC.Mathematics.Complex64.Cos(), and BGC.Mathematics.Complex64.Sin().
Trigonometric Sine of a Complex64 number.
value | The complex value. |
Definition at line 309 of file Complex64.cs.
References BGC.Mathematics.GeneralMath.Cosh(), and BGC.Mathematics.GeneralMath.Sinh().
Referenced by BGC.Mathematics.Complex64.Rotation().
Hyperbolic Sine of a Complex64 number.
value | The complex value. |
Definition at line 327 of file Complex64.cs.
References BGC.Mathematics.GeneralMath.Cosh(), and BGC.Mathematics.GeneralMath.Sinh().
The Square Root of a complex number
Referenced by BGC.Audio.FrequencyDomain.Populate().
|
inline |
The Square (power 2) of this Complex64
Definition at line 356 of file Complex64.cs.
References BGC.Mathematics.Complex64.SquareRoot().
|
inline |
The Square Root (power 1/2) of this Complex64
Definition at line 824 of file Complex64.cs.
References BGC.Mathematics.Complex64.Abs().
Referenced by BGC.Mathematics.Complex64.Square().
The difference between two Complex64 numbers;
Trigonometric Tangent of a Complex64 number.
value | The complex value. |
Definition at line 385 of file Complex64.cs.
References BGC.Mathematics.Complex64.Imaginary, and BGC.Mathematics.Complex64.Real.
Referenced by BGC.Mathematics.Complex64.Tanh().
Hyperbolic Tangent of a Complex64 number.
value | The complex value. |
Definition at line 404 of file Complex64.cs.
References BGC.Mathematics.GeneralMath.Cosh(), BGC.Mathematics.GeneralMath.Sinh(), BGC.Mathematics.Complex64.Tan(), and BGC.Mathematics.GeneralMath.Tanh().
string BGC.Mathematics.Complex64.ToString | ( | string | format | ) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format for its real and imaginary parts.
string BGC.Mathematics.Complex64.ToString | ( | IFormatProvider | provider | ) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified culture-specific formatting information.
string BGC.Mathematics.Complex64.ToString | ( | string | format, |
IFormatProvider | provider | ||
) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format and culture-specific format information for its real and imaginary parts.
override string BGC.Mathematics.Complex64.ToString | ( | ) |
Converts the value of the current complex number to its equivalent string representation in Cartesian form.
|
private |
The imaginary component of the complex number.
Definition at line 51 of file Complex64.cs.
|
private |
The real component of the complex number.
Definition at line 45 of file Complex64.cs.
Referenced by BGC.Mathematics.Complex64.Exponential().
double BGC.Mathematics.Complex64.Imaginary => _imag |
Gets the imaginary component of the current System.Numerics.Complex64 object.
Definition at line 91 of file Complex64.cs.
Referenced by BGC.Mathematics.Complex64.Power(), and BGC.Mathematics.Complex64.Tan().
Returns a new Complex64 instance with a real number equal to zero and an imaginary number equal to one.
Definition at line 67 of file Complex64.cs.
Gets the squared magnitude (or squared absolute value) of a complex number.
Definition at line 710 of file Complex64.cs.
Returns a new Complex64 instance with real and imaginary numbers not a number.
Definition at line 77 of file Complex64.cs.
Returns a new Complex64 instance with a real number equal to one and an imaginary number equal to zero.
Definition at line 62 of file Complex64.cs.
double BGC.Mathematics.Complex64.Phase => _imag == 0.0 && _real < 0.0 ? Math.PI : Math.Atan2(_imag, _real) |
Gets the phase of a complex number in radians.
Definition at line 139 of file Complex64.cs.
|
static |
Returns a new Complex64 instance with real and imaginary numbers positive infinite.
Definition at line 72 of file Complex64.cs.
double BGC.Mathematics.Complex64.Real => _real |
Gets the real component of the current System.Numerics.Complex64 object.
Definition at line 96 of file Complex64.cs.
Referenced by BGC.Audio.Synthesis.NoiseAudioClip._Initialize(), BGC.Audio.AnalyticStreams.AnalyticStreamExtensions.CalculateRMS(), BGC.Audio.AnalyticStreams.AnalyticNoiseStream.Initialize(), BGC.Mathematics.Complex64.operator/(), BGC.Audio.Filters.AllPassFilter.ProcessSample(), and BGC.Mathematics.Complex64.Tan().
Returns a new Complex64 instance with a real number equal to zero and an imaginary number equal to zero.
Definition at line 57 of file Complex64.cs.
|
get |
Gets the magnitude (or absolute value) of a complex number.
Definition at line 102 of file Complex64.cs.