Question on function handles

1 view (last 30 days)
Tanmay
Tanmay on 20 Jun 2012
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 Comment
per isakson
per isakson on 20 Jun 2012
Did you read on "function handle" in the online documentation?

Sign in to comment.

Accepted Answer

Tom
Tom on 20 Jun 2012
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 Comments
Tom
Tom on 20 Jun 2012
Are you suggesting that counting to ten is in some way less rigorous than domains and tuples?
Walter Roberson
Walter Roberson on 20 Jun 2012
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, .... ) ? :-)

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 20 Jun 2012
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.

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!