aboutsummaryrefslogtreecommitdiffhomepage
path: root/problems/14-Matrix-Square/testcase_1_double_4x4.rb
blob: 106e48a6ded0bbe14dbf312c1282ed6c85d060f4 (plain)
1
2
3
4
5
6
7
8
9
10
require 'matrix'

a = Matrix[
  [3.0, 9.0, 7.0, 5.0],
  [1.0, 1.0, 0.0, 8.0],
  [6.0, 7.0, 0.0, 9.0],
  [8.0, 2.0, 1.0, 1.0],
]

puts a**2