Problem adding a field to a struct via function

10 vues (au cours des 30 derniers jours)
Florian Spicher
Florian Spicher le 17 Nov 2021
Commenté : Florian Spicher le 17 Nov 2021
Hi!
I would like to use functions, which compute a few things, and then add the respective results to my struct. My problem is that, when I put the very same lines in the command window, it works perfectly, but when I use my functions, nothing changes.
For example, I have the short code:
function generateTriangleCount(MeshInfo)
SizeTriangleField=size(MeshInfo.tri);
MeshInfo.NT=SizeTriangleField(1);
end
where MeshInfo is my structure. Entering generateTriangleCount(MeshInfo) does not add the field NT to my structure, but entering SizeTriangleField=size(MeshInfo.tri); and MeshInfo.NT=SizeTriangleField(1); does. What do I do wrong?

Réponse acceptée

Kelly Kearney
Kelly Kearney le 17 Nov 2021
Your function doesn't return any output. Modify it to do so:
function MeshInfo = generateTriangleCount(MeshInfo)
SizeTriangleField=size(MeshInfo.tri);
MeshInfo.NT=SizeTriangleField(1);
end
and then call it via:
MeshInfo = generateTriangleCount(MeshInfo);
  1 commentaire
Florian Spicher
Florian Spicher le 17 Nov 2021
I apparently was overthinking it. Thank you :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures 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