function y = sumcuberoots(x)
y = sum(cuberoot(x));

% --- Subfunction starts here.
function z = cuberoot(x)
z = sign(x).*abs(x).^(1/3);