Complex user defined type
Namespace: Microsoft.Quantum.Math
Package: Microsoft.Quantum.QSharp.Foundation
Represents a complex number by its real and imaginary components. The first element of the tuple is the real component, the second one - the imaginary component.
newtype Complex = (Real : Double, Imag : Double);
Named Items
Real : Double
Imag : Double
Example
The following snippet defines the imaginary unit $0 + 1i$:
let imagUnit = Complex(0.0, 1.0);
反馈
提交和查看相关反馈