% This function assumes that x and y are vectors. % The symbol .* denotes element by element multiplication % The symbol .^ denotes element by element exponentiation function y = fcn1(x) y = (1-4.*x.*(1-x)).^(1/3);