How to define and call non constructor object methods?
Mostrar comentarios más antiguos
I have started using object in Matlab but I do not understand how to define or call non-constructor methods. Just a stupid example: defining this method :
if true
function NoteDot = CheckingTheDot(obj)
if obj.IsItAFullHeadNote
NoteDot = true;
end
end
end
and calling as S.CheckingTheDot() it works(S is an instance of the class of course). Instead if I define it as:
if true
function NoteDot = CheckingTheDot(obj,a)
if obj.IsItAFullHeadNote && a>2
NoteDot = true;
end
end
end
and calling it as S.CheckingTheDot(a); it returns the error: "Too many input arguments" Thanks in advance
1 comentario
Francesco
el 18 de Mayo de 2013
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Function Creation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!