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

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

[Octave-bug-tracker] [bug #45660] Memory profiling via "mtic" and "mtoc"


From: Rik
Subject: [Octave-bug-tracker] [bug #45660] Memory profiling via "mtic" and "mtoc"
Date: Wed, 15 Aug 2018 11:32:11 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:61.0) Gecko/20100101 Firefox/61.0

Update of bug #45660 (project octave):

                  Status:                    None => Wont Fix               
             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #3:

Since Matlab no longer supports this there is less incentive to implement it. 
Also, there are easy workarounds.  The function 'whos' can return a structure
array with a field 'bytes' for each variable that can be used to calculate the
memory used.

Sample code:


memstart = sum ([(whos()).bytes])
... Code ...
memend = sum ([(whos()).bytes])
memused = memend - memstart


Marking as "Won't Fix" and closing report.


    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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