The Algorithms logo
The Algorithms
关于捐赠

Parabola

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