2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
require 'matrix'
|
|
|
|
|
|
|
|
describe "Matrix.unitary?" do
|
|
|
|
it "returns false for non unitary matrices" do
|
|
|
|
Matrix[[0, 1], [1, 2]].unitary?.should == false
|
|
|
|
Matrix[[0, Complex(0, 2)], [Complex(0, 2), 0]].unitary?.should == false
|
|
|
|
Matrix[[0, Complex(0, 1)], [Complex(0, -1), 0]].unitary?.should == false
|
|
|
|
Matrix[[1, 1, 0], [0, 1, 1], [1, 0, 1]].unitary?.should == false
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for unitary matrices" do
|
|
|
|
Matrix[[0, Complex(0, 1)], [Complex(0, 1), 0]].unitary?.should == true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error for rectangular matrices" do
|
|
|
|
[
|
|
|
|
Matrix[[0], [0]],
|
|
|
|
Matrix[[0, 0]],
|
|
|
|
Matrix.empty(0, 2),
|
|
|
|
Matrix.empty(2, 0),
|
2017-10-28 11:15:48 -04:00
|
|
|
].each do |rectangular_matrix|
|
2017-05-07 08:04:49 -04:00
|
|
|
lambda {
|
2017-10-28 11:15:48 -04:00
|
|
|
rectangular_matrix.unitary?
|
2017-05-07 08:04:49 -04:00
|
|
|
}.should raise_error(Matrix::ErrDimensionMismatch)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|