produce a cell array of cell arrays of element names

3 vues (au cours des 30 derniers jours)
Anju Mohokar
Anju Mohokar le 31 Oct 2019
Commenté : Anju Mohokar le 12 Nov 2019
I want to create a cell from a cell arrays of simulink. elements present in matlab workspace. I have tried with below command in matlab 2019b
element_names = getElementNames{elements}; // whereas elements is the name of cell in workspace with all elements.
and getting below error:
error.JPG

Réponse acceptée

YT
YT le 31 Oct 2019
If getElementNames is a function, you should use round brackets instead of curly brackets:
element_names = getElementNames(elements);
  3 commentaires
YT
YT le 1 Nov 2019
You should check the documentation, which states you should input a Simulink.SimulationData.Dataset object, not just a cell:
element_list = getElementNames(dataset) returns the names of all of the elements in the Simulink.SimulationData.Dataset object.
Anju Mohokar
Anju Mohokar le 12 Nov 2019
Thanks..!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Identification 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