I was just browsing through a code and I found the following line :
other_function(@(t)(xx(t,g)))
where other_function,xx are already defined functions and g is already defined.
Here is the code for xx
function [val]=xx(x,y)
val=x+y;
end;
SO now I am unable to understand the meaning of @(t)(xx(t,g))