Skip to content

Commit

Permalink
lessen dependence on rand #188
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlebring committed Aug 29, 2019
1 parent b70416b commit 3dc5972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/transf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ using LinearAlgebra


n=size(nep4,1);
V=randn(n,5);
S=randn(5,5);
V=(1:n)*(1:5)'/n; # Arbitrary matrices
S=(1:5)*(1:5)'/5-3I;
s = Matrix(3.0*I, 1, 1)
W1 = compute_MM(nep4, (c*S + d*I) \ (a*S + b*I), V)
W2=compute_MM(nep4_transf,S,V);
Expand Down

0 comments on commit 3dc5972

Please sign in to comment.