1 2 3 4 5 6 7 8 9 10 11 12 13
classdef BasicClass methods function r = f_left(obj) r = round([obj.Test]); end function r = f_right(obj) r = ceil([obj.Value],2); end function r = f_a(obj,n) r = 100*n; end end end