The Algorithms logoThe Algorithms
About
function z = Parabola(x)
    z = sum(x.^2);
end

Parabola

p