标签: matlab function
我只是浏览代码,发现以下行:
other_function(@(t)(xx(t,g)))
其中other_function,xx已经定义了功能,而g已经定义了。
这是xx的代码
function [val]=xx(x,y) val=x+y; end;
所以现在我无法理解@(t)(xx(t,g))的含义