Manipulating an anonymous function
3 ビュー (過去 30 日間)
古いコメントを表示
I have a handle class myClass which has a property myFunc that is a function handle which I define with an anonymous function, e.g.
myClass.myFunc = @(x) 2*x
Is it possible to use myFunc to redefine itself? I tried
myClass.myFunc = @(x) -myClass.myFunc(x)
but trying to evaluate this led to a max recursion error. My function is defined inside of a class method using a local variable like:
myClass.myFunc = @(x) localVar*x
Otherwise, I would consider using func2str, but that doesn't help because it produces the expression involving localVar which is no longer defined. Right now, I am using
myClass.myOtherFunc = @(x) -myClass.myFunc(x)
but I'd prefer not to have to create a separate property just for this.
0 件のコメント
採用された回答
Walter Roberson
2014 年 1 月 17 日
tmp = myClass.myFunc;
myClass.myFunc = @(x) ~tmp(x);
3 件のコメント
Walter Roberson
2014 年 1 月 17 日
Are you sure you have the (x) after tmp ? Could you show the exact two lines of code that you use?
その他の回答 (1 件)
per isakson
2014 年 1 月 17 日
編集済み: per isakson
2014 年 1 月 17 日
I don't understand what you want to achieve, but
>> myc = my_class();
>> x = myc.foo(5);
>> x
x =
-10
where
classdef my_class
properties
foo1
end
methods
function this = my_class( )
this.foo1 = @(x) 2*x;
this.foo1 = @(x) -this.foo1(x);
end
function out = foo( this, val )
out = this.foo1(val);
end
end
end
2 件のコメント
per isakson
2014 年 1 月 22 日
My mistake. However, this looks like a bug to me. Did you report to tech-support?
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!