Parabole.m
Conditions d’achèvement
function [ y ] = parabole( x, alpha )
b = 2.5;
c = 100;
y = -alpha * x.^2 + b*x +c
end