We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9326bdc commit a204372Copy full SHA for a204372
1 file changed
test/test_kron.jl
@@ -48,13 +48,13 @@ function test_kron()
48
end
49
50
@testset ExtendedTestSet "kron scaling" begin
51
- A =2kron(opEye(2),I(1))
52
- x = randn(2)
53
- y1=A*x
54
- y2=A'*x
55
- y3=transpose(A)*x
56
- err = norm(y1-2x) + norm(y2-2x) + norm(y3-2x)
57
- @test err < 1e-12
+ A = 2kron(opEye(2), I(1))
+ x = randn(2)
+ y1 = A * x
+ y2 = A' * x
+ y3 = transpose(A) * x
+ err = norm(y1 - 2x) + norm(y2 - 2x) + norm(y3 - 2x)
+ @test err < 1e-12
58
59
60
0 commit comments