microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
amcasey/ArrayWrap

Branches

Tags

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

Clone

HTTPS

Download ZIP

katas/content/linear_algebra/adjoint/Solution.qs

10lines · modecode

1namespace Kata {
2 import Std.Math.*;
3
4 function MatrixAdjoint() : Complex[][] {
5 return [
6 [Complex(1., -5.), Complex(3., 6.)],
7 [Complex(2., 0.), Complex(0., -4.)]
8 ];
9 }
10}
11