Effacer les filtres
Effacer les filtres

How to initialize an object array as a class property?

16 vues (au cours des 30 derniers jours)
Sigurd Askeland
Sigurd Askeland le 20 Avr 2018
Commenté : Steven Lord le 21 Juil 2022
Here are two code snippets illustrating my problem:
classdef SomeClass
properties
foo;
bar;
end
end
and in another file:
classdef SomeOtherClass
properties
%Array of SomeClass objects.
someClassArray;
end
methods
function obj = SomeOtherClass(n)
%Initialize the array, as n can be large.
obj.someClassArray(n,1) = SomeClass();
end
end
end
When initializing an object of the second class, Matlab assusmes the someClassArray property is a double, and gives an error:
The following error occurred converting from SomeClass to double:
Conversion to double from SomeClass is not possible.
Error in SomeOtherClass (line 10)
obj.someClassArray(n,1) = SomeClass();
How do I get around this?

Réponse acceptée

Matt J
Matt J le 20 Avr 2018
Modifié(e) : Matt J le 20 Avr 2018
      methods
         function obj = SomeOtherClass(n)
               tmp(n,1)=someClass;
              obj.someClassArray=tmp;
          end
      end
  2 commentaires
Jon
Jon le 21 Juil 2022
I have been experiencing the same problem, and this approach also solves my problem. I am wondering though why it is necessary, or why it works when simply initializing the property value directly i.e
obj.someClassArray(n,1) = SomeClass();
doesn't work.
Steven Lord
Steven Lord le 21 Juil 2022
It's because of how property default values are determined. See the "Property Default Values" section on this documentation page for more information.
I'd probably solve this by making someClassArray either a scalar SomeClass object or an empty SomeClass object array (like Prop4 in the documentation section I referenced above.)
But be careful with this if you initialize a property value to an instance of a handle class. See the "Initializing Properties to Handle Objects" section on that same documentation page.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Visual Exploration dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by