microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
alex/pythontelem

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

katas/content/linear_algebra/adjoint/Solution.qs

8lines · modecode

1namespace Kata {
2 open Microsoft.Quantum.Math;
3
4 function MatrixAdjoint() : Complex[][] {
5 return [[Complex(1., -5.), Complex(3., 6.)],
6 [Complex(2., 0.), Complex(0., -4.)]];
7 }
8}
9