Script f_nest2.m
Download Script f_nest2.m
function h = f_nest2
h = @power

function y = power(b,expo)
y = b^expo
end

% test2=y
end
Back