How to save a callback function

조회 수: 3 (최근 30일)
Sylvain
Sylvain 2020년 2월 24일
댓글: Adam 2020년 2월 24일
I need to save a datacursormode callback function, as a local variable (at least the syntax) . The argument of this function is my object
I am updating an object and then passing the saved function and the updated object in my datacusrormode UpdateFcn.
How to do it ? I tried the func2str and str2func without success.
  댓글 수: 1
Adam
Adam 2020년 2월 24일
It would help if you showed some relevant part of code for your problem as I'm not really sure I understand what it is you are wanting to do. You can save a callback as a function handle simply by doing something like this:
f = @myCallbackFcn;
where myCallbackFcn is defined somewhere as:
function myCallbackFcn( ~, eventObj )
...
end
You can also use an anonymous function if you wish to pass in more arguments than the default mandatory ones for that callback.

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by