%%Make F callable by feval


if ischar(F) & exist(F)~=2      %%If F is a character string turn it right into inline
    F=inline(F);
elseif isa(F,'sym')             %%If F is a symbolic set turn it into character string 
    F=inline(char(F));          %%and make it inline
end