The Algorithms logo
The Algorithms
SobreFaça uma doação

Parabola

function z = Parabola(x)
    z = sum(x.^2);
end