フィルターのクリア

From a string to function handle of a function handle

1 回表示 (過去 30 日間)
Patrick Mboma
Patrick Mboma 2017 年 7 月 19 日
コメント済み: James Tursa 2017 年 7 月 20 日
Hi,
Is it possible to transform a string into a function handle calling another function handle?
More specifically, consider the following simple example
func1=@(x)mean(x)
tmp='@(x)func1(x)+3'
we know that defining
func2=str2func(tmp)
does not work.
Is there any way to create a function handle using tmp that will work?
Thanks

採用された回答

James Tursa
James Tursa 2017 年 7 月 19 日
func2 = eval(tmp);
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 7 月 19 日
... risky
James Tursa
James Tursa 2017 年 7 月 20 日
Yep, agreed. If you don't know where that string is coming from and what could be in it or don't trust the source, then eval should probably be avoided.

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 7 月 19 日
tmp='@(x)feval(evalin(''caller'',''func1''),x)+3'
  2 件のコメント
Patrick Mboma
Patrick Mboma 2017 年 7 月 19 日
Thanks Walter, I guess this would work but at the same time it looks like a very cumbersome way of going about it especially if you have long expressions.
Walter Roberson
Walter Roberson 2017 年 7 月 19 日
The basic issue is that str2func() is operating in a context outside your current workspace, so it does not have access to any variables in your workspace. evalin('caller') gives it that access. You would have the same difficulty with a plain variable:
>> A = 5
A =
5
>> tmp = '@(x) x+A'
tmp =
'@(x) x+A'
>> func2 = str2func(tmp)
func2 =
function_handle with value:
@(x)x+A
>> func2(7)
Undefined function or variable 'A'.
Error in @(x)x+A
str2func always does textual substitutions.

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

カテゴリ

Help Center および File ExchangeFunction Handles についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by