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

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

[Octave-bug-tracker] [bug #58375] Function eig(A, B) stops when A and B


From: Leonardo
Subject: [Octave-bug-tracker] [bug #58375] Function eig(A, B) stops when A and B are random symmetrical matrices
Date: Fri, 15 May 2020 16:10:58 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0

Follow-up Comment #1, bug #58375 (project octave):

I could not reproduce your error.

Also, even after 1000 runs, no error.


tic
for i=1:1000
A = randn(10, 10);
A = A'*A; % Symmetrical
B = randn(10, 10);
B = B'*B; % Symmetrical
[V, D] = eig(A, B);
end
toc
Elapsed time is 0.145193 seconds.


Have you tried to compile octave from source?

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?58375>

_______________________________________________
  Mensagem enviada pelo Savannah
  https://savannah.gnu.org/




reply via email to

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