Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Speeding up deletion of an object containing an array of handle objects

3 Ansichten (letzte 30 Tage)
JWTay
JWTay am 14 Jun. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I am developing a (handle) class that acts as a container for an array of (also handle) objects. I'm doing this so I can use the data in those objects for further analysis.
When deleting ContainerObj, MATLAB seems to take quite a long time. For example, when I'm loading 160,000 dataObjects, calling clear(ContainerObj) can take up to 30 seconds. My question is: is there a way to speed up deletion of these objects?
I have read the documentation on deleting cyclical object references, but I don't think that that applies here because the dataObjects are not linked to each other.
Example code:
classdef ContainerObj < handle
properties
Data = {};
end
methods
function addObject(obj)
obj.Data{end + 1} = dataObject;
end
end
end
classdef dataObject< handle
...
end
  2 Kommentare
Image Analyst
Image Analyst am 14 Jun. 2017
Bearbeitet: Image Analyst am 14 Jun. 2017
How long does it take if you use delete() instead of clear()?
This is not a static method, so have you instantiated 160,000 instances of the class in an array of those classes? When you say clear(ContainerObj) are you trying to erase the definition of the class? Or are you trying to clear the instantiated object(s) or object array?
JWTay
JWTay am 16 Okt. 2017
I apologize for not getting back to you earlier.
Let me clarify with a quick example:
%Initialize the container object
dataset = ContainerObj;
%Add some data
for ii = 1:10000
dataset.addObject = dataObject;
end
%Do some analysis.
...
%We're done, clean up the workspace
clear(dataset)

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by