From: Weston Thompson on 17 Jun 2010 19:30 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 18 Jun 2010 07:41 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
|
Pages: 1 Prev: header for fortran dll to be called from matlab Next: Ga optimization code needs to correct |