No BSD License
-
at(h,attrib)
-
fmuse(varargin)
% Placing this file in the path will neutralize calls to fmuse.m
-
funcompose(f,F)
function f1 = funcompose(f,F)
-
funcompose_test_d(l,p)
Helper for funcompose testing
-
funcompose_test_f(q, r, e, t,...
Helper for funcompose testing
-
funcompose_test_g(s,r,t,v,z)
Helper for funcompose testing
-
funcompose_test_w(k,c,u,f);
-
isfun(f)
-
View all files
|
|
| isfun(f) |
function y = isfun(f)
% function y = isfun(f)
%
% f function_handle
%
% Determine if f is annotated
try
code = f('-fun');
y = code==prod(double('fun'));
catch
y = 0;
end
|
|
Contact us at files@mathworks.com