octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #41305] error: eigs: error -14 in dneupd


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #41305] error: eigs: error -14 in dneupd
Date: Thu, 23 Jan 2014 10:15:10 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:26.0) Gecko/20100101 Firefox/26.0

Follow-up Comment #10, bug #41305 (project octave):

I forgot to say the last reported issue may not be related to the OP's issue
but rather to the random number generation inaccuracy.

Max, can you check that the random sparse matrix is the consistent e.g. using
the following ? 


for it = 136:139 
rand('state',it); 
W = rand(200); 
W(W < 0.9) = 0; 
W(W != 0) = rand(size(W(W != 0))) - 0.5; 
eigs(W,1,'LM'); 
endfor

w1 = W;

rand('state',it); 
W = rand(200); 
W(W < 0.9) = 0; 
W(W != 0) = rand(size(W(W != 0))) - 0.5; 
eigs(W,1,'LM'); 

all (W == w1)

 

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?41305>

_______________________________________________
  Message posté via/par Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]