Bonjour,
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 %************************************** % Etude de la fonction : * % f(x)=1.1 * x* sin(x) - (2*log(x+2)) * %************************************** x=2:0.1:12; f= 1.1 * x * sin(x) - (2*log(x+2)); plot(x,f); grid on; title('Fonction : f(x)= 1.1 * x* sin(x) - (2*log(x+2))');
Partager