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

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

[Octave-bug-tracker] [bug #47415] out of memory with factorized sparse m


From: Carlo de Falco
Subject: [Octave-bug-tracker] [bug #47415] out of memory with factorized sparse matrix using mldivide
Date: Tue, 15 Mar 2016 10:47:15 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:45.0) Gecko/20100101 Firefox/45.0

Follow-up Comment #3, bug #47415 (project octave):

Intrestingly enough, I tried separating the solve line into 
different steps and it works:


>> load sparse_matrix_bug_data.binary.gz 
>> [jacL, jacU, jacP, jacQ, jacR] = lu (jac);
>> delta = - jacQ * (jacU \ (jacL \ (jacP * (jacR \ res))));
error: out of memory or dimension too large for Octave's index type
>> a = jacR \ res;
>> b = jacP \ a;
>> c = jacL \ b;
>> d = jacU \ c;
>> e = jacQ * d;
>> delta = -e;


maybe the error lies in the parser somewhere?



    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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