Is it possible to get access to variables within function handles?

11 ビュー (過去 30 日間)
Brando Miranda
Brando Miranda 2017 年 4 月 20 日
コメント済み: Steven Lord 2017 年 4 月 21 日
For example say I define:
c=3;
f = @(x) x + c;
is it possible to do
f.c
or basically get access to the variables within the function handle?

回答 (3 件)

Steven Lord
Steven Lord 2017 年 4 月 21 日
For debugging purposes, yes. The workspace field of the output of the functions function contains that information. The "Display Information About Anonymous Function Handle" example on that page is very close to the problem you wrote.
Again, I want to emphasize a note from that documentation page: " Note: Do not use functions programmatically because its behavior could change in subsequent MATLAB® releases. "
  2 件のコメント
James Tursa
James Tursa 2017 年 4 月 21 日
To make it clear, this is to examine the values only. You cannot change these values using this info.
Steven Lord
Steven Lord 2017 年 4 月 21 日
Correct. To change the values, recreate the function handle.

サインインしてコメントする。


Brando Miranda
Brando Miranda 2017 年 4 月 21 日
c = 3;
f = @(x) x + c;
ff = functions(f);
ff.workspace{1}.c
  1 件のコメント
James Tursa
James Tursa 2017 年 4 月 21 日
To make it clear, this is to examine the values only. You cannot change these values using this info.

サインインしてコメントする。


James Tursa
James Tursa 2017 年 4 月 20 日
The only way I would be aware of would be a mex hack. E.g.,
c = 3;
f = @(x) x + c;
The "c" inside of the function handle "f" is actually a shared data copy snapshot of the "c" in the workspace at the time of the function handle creation. It is contained within the function handle itself. The only way to subsequently gain access to it would be to maintain the shared data copy of it at the workspace level (i.e., the "c" in the workspace), pass that to a mex routine, which could then hack into the variable to discover where the function handle "c" lives in memory. This procedure is not supported by any official API functions.
If you need to change the value of "c" in the function handle, it is probably best to just create a new function handle.

カテゴリ

Help Center および File ExchangeWrite C Functions Callable from MATLAB (MEX Files) についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by