Question on function handles
1 回表示 (過去 30 日間)
古いコメントを表示
Hi
I am looking at the code for "Learning the Extended Kalman Filter" by by Yi Cao on the File Exchange. In the code , there are a couple of lines that I couldnt get:
f=@(x)[x(2);x(3);0.05*x(1)*(x(2)+x(3))]; h=@(x)x(1);
Can someone explain how handles work here? (in terms of plain math)
1 件のコメント
採用された回答
Tom
2012 年 6 月 20 日
Roughly speaking, f and h are handles to small functions- functions that have been made without having to actually write
function [Out1 Out2...] = FunctionName(In1,In2...)
function handles allow you to run a function using a variable name instead of having to write the name of the function.
For a simpler example:
F=@(x) x(x>5);
F is the function handle, and x(x>5) is the code that it executes if you enter
y=F(1:10)
you will see that it returns the numbers greater than 5.
3 件のコメント
Tom
2012 年 6 月 20 日
Are you suggesting that counting to ten is in some way less rigorous than domains and tuples?
Walter Roberson
2012 年 6 月 20 日
It is the "code that it executes" part that is the less rigorous. That and the "run a function". What it *means* to "run a function", in rigorous terms, is surprisingly complex. And what the colon operator does, precisely, when the the increment includes a non-zero fractional part, is a headache.
Did you remember to specify that you are expecting this to be executed on a machine with at least 4 bits? (or 3 bits if using trinary, or 2 bits if using quaternary, .... ) ? :-)
その他の回答 (1 件)
Walter Roberson
2012 年 6 月 20 日
In terms of plain math:
A function handle is a projection of a subspace of a domain (represented by a tuple) on to a subspace of a range (represented by a tuple). The projection function is arrived at by currying the original function to creating a new function which embeds all elements of the tuple that are to be treated as constants with respect to the projection.
If you prefer, I could rephrase in terms of Denotational Semantics, but I think I packed my reference book for that.
I think you will find the use of function handles rather clearer if you think of them procedurally rather than mathematically, and examine the online MATLAB documentation on function handles.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!