Is it possible to tell if another set method call is coming up?

조회 수: 3 (최근 30일)
Christian Veenstra
Christian Veenstra 2017년 12월 5일
댓글: Greg 2017년 12월 5일
I have an object that does a somewhat long calculation, stores the result, and then lets the user use it. If they change certain properties then it needs to be recalculated. So, in the set method for those properties, I just call the precalculation method. Ideally, if the user changed multiple properties at the same time - for example, set(obj,'A',a,'B',b) - then it wouldn't do the calculation twice. Is it possible for me to check how the set method was called? Ideally I could write something like:
classdef foo < matlab.mixin.SetGet
properties (SetAccess=private)
Expensive=[];
end
properties
a=1;
b=2;
end
methods
function DoSomethingHard(obj)
Expensive=SomeLongCalculation(obj.a,obj.b);
end
function set.a(obj,value)
obj.a=value;
if NoMoreSetCallsComingUp
obj.DoSomethingHard;
end
end
function set.b(obj,value)
obj.b=value;
if NoMoreSetCallsComingUp
obj.DoSomethingHard;
end
end
end
end
Except I don't know what "NoMoreSetCallsComingUp" would look like. Is this possible? Currently I'm just doing a lot of unnecessary computations...
  댓글 수: 1
Greg
Greg 2017년 12월 5일
If my recommended answer doesn't work, you might be able to do evalin('caller','nargin') to determine if multiple set commands were issued.
This is a VERY bad idea, for various reasons. Use at your own risk.

댓글을 달려면 로그인하십시오.

채택된 답변

Greg
Greg 2017년 12월 5일
I can't test it on this machine to confirm, but you should be able to define set for your class (as opposed to set.a and set.b individually). Then, parse the parameter-value pairs and call doSomethingHard at the end.
methods
function DoSomethingHard(obj)
Expensive=SomeLongCalculation(obj.a,obj.b);
end
function set(obj,varargin)
% Obviously want better input checking...
for iarg = 1:2:length(varargin)
obj.(varargin{iarg}) = varargin{iarg+1};
end
% Best practice is to call methods method(obj) vs. obj.method
% avoids confusion between methods and properties
DoSomethingHard(obj);
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by