Unrecognized method, property, or field 'elements' for class 'Simulink.Bus'.
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Peman
il 16 Dic 2025 alle 18:14
Commentato: Fangjun Jiang
circa 8 ore fa
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
0 Commenti
Risposta accettata
Fangjun Jiang
il 16 Dic 2025 alle 18:35
Modificato: Fangjun Jiang
il 16 Dic 2025 alle 18:47
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 Commenti
Fangjun Jiang
circa 8 ore fa
Yes. Now it definitely reminds me that matching case was not required before.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Composite Interfaces in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!