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

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

[Octave-bug-tracker] [bug #57439] handles to private functions may fail


From: Dmitri A. Sergatskov
Subject: [Octave-bug-tracker] [bug #57439] handles to private functions may fail after "clear functions"
Date: Fri, 28 Feb 2020 14:52:31 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0

Follow-up Comment #30, bug #57439 (project octave):

The benchmark code snippet (for comment 17):


% (4)
cumulate = 0; b = 0;
for i = 1:runs
  b = zeros(620, 620);
  tic;
    for j = 1:620
      for k = 1:620
        b(k,j) = abs(j - k) + 1;
      end
    end
  timing = toc;
  cumulate = cumulate + timing;
end
timing = cumulate/runs;
times(4, 3) = timing;
disp(['Creation of a 620x620 Toeplitz matrix (loops)_______ (sec): '
num2str(timing)])
clear b; clear j; clear k;



The original sciviews benchmark was released under GPL 2.
(I attached a copy for the reference). 
I use it with significantly larger matrix size.

Dmitri.
-- 


(file #48518, file #48519)
    _______________________________________________________

Additional Item Attachment:

File name: Octave2.m                      Size:8 KB
    <https://savannah.gnu.org/file/Octave2.m?file_id=48518>

File name: gcd2.m                         Size:0 KB
    <https://savannah.gnu.org/file/gcd2.m?file_id=48519>



    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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