From: Weston Thompson on
Hello all,

I'm trying to place my code into a class, but I'm not exactly sure how to go about it. the class below is what I currently have. I execute the following in the command window:
a = ScriptClass(1);
a.setEvent(1);
This gives me an error "Too many input arguments", after the second command. Does anyone know what I have wrong here?




classdef ScriptClass

properties (GetAccess = private)
event;
end

methods
function ScriptClass_obj = ScriptClass(numb)
obj.event = numb;
disp(obj.event);
end
end
methods (GetAccess = public)
function setEvent(numb)
obj.event = numb;
end
function getEvent()
ans = obj.event
end
function ourScript
....
end



Weston
From: Loren Shure on
In article <hveb6f$iqp$1(a)fred.mathworks.com>,
westhompremove.this(a)hotmail.com says...
> Hello all,
>
> I'm trying to place my code into a class, but I'm not exactly sure how to go about it. the class below is what I currently have. I execute the following in the command window:
> a = ScriptClass(1);
> a.setEvent(1);
> This gives me an error "Too many input arguments", after the second command. Does anyone know what I have wrong here?
>
>
>
>
> classdef ScriptClass
>
> properties (GetAccess = private)
> event;
> end
>
> methods
> function ScriptClass_obj = ScriptClass(numb)
> obj.event = numb;
> disp(obj.event);
> end
> end
> methods (GetAccess = public)
> function setEvent(numb)
> obj.event = numb;
> end
> function getEvent()
> ans = obj.event
> end
> function ourScript
> ...
> end
>
>
>
> Weston
>

setEvent should have 2 inputs, and the first should be the object.

--
Loren
http://blogs.mathworks.com/loren
http://matlabwiki.mathworks.com/MATLAB_FAQ