what is the difference between set(object,'property',value) and object.property = value)
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Data Type Identification en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!