The Algorithms logo
The Algorithms
Acerca deDonar

Parabola

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