Unrecognized method, property, or field 'elements' for class 'Simulink.Bus'.

9 vues (au cours des 30 derniers jours)
Peman
Peman le 16 Déc 2025
Commenté : Fangjun Jiang le 17 Déc 2025
Hello,
I have a project initially designed in MATLAB R2011b and opened it in MATLAB R2025b and got the following error. Any idea how to fix this issue? It seems like the 'elements' method no longer exists (deprecation) on the 'Bus' object. Below is also the piece of code that is causing this issue.
Error: Unrecognized method, property, or field 'elements' for class 'Simulink.Bus'.
Code causing error above:
function busOut = funSetSamplingtimeBus(bus, samplingtime)
for index = 1:length(bus.elements),
bus.Elements(index).Sampletime = samplingtime;
end
busOut = bus;
end
Thanks,
PM

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 16 Déc 2025
Modifié(e) : Fangjun Jiang le 16 Déc 2025
It should be .Elements with the capital "E". It might be that in the older version, it was not enforced to match the case between MyBus.elements and MyBus.Elements.
  2 commentaires
Peman
Peman le 16 Déc 2025
That fixed the issue. Thanks a lot!
Note: .Sampletime had also be changed to .SampleTime for this piece of code to work.
Fangjun Jiang
Fangjun Jiang le 17 Déc 2025
Yes. Now it definitely reminds me that matching case was not required before.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Composite Interfaces dans Help Center et File Exchange

Produits


Version

R2025b

Community Treasure Hunt

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

Start Hunting!

Translated by