what is the difference between set(object,'property',value) and object.property = value)
Ältere Kommentare anzeigen
Hello
i'm struggling between using this:
handles.scatM1.XData = handles.M1(:,1);
handles.scatM1.YData = handles.M1(:,2);
and
set(handles.scatM1,'XData',handles.M1(:,1),'YData',handles.M1(:,1))
is there a difference in the way it will interact? is one way a better option?
because i have tried both option and they seems good both.
Thanks
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Data Type Identification finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!