how to make graph for this function
Afficher commentaires plus anciens
f:y=Ix−4I+Ix2−5x+6I−Ix+4I+4.
Réponses (1)
Setsuna Yuuki.
le 15 Nov 2020
Modifié(e) : Setsuna Yuuki.
le 15 Nov 2020
You can use fplot()
for example:
syms x;
y = @(x) abs(x-4)+abs(x^2-5*x+6)-abs(x+4)+4;
fplot(y,'LineWidth',3);
xlim([-6 12])
more info: https://es.mathworks.com/help/matlab/ref/fplot.html
2 commentaires
Eva
le 15 Nov 2020
Setsuna Yuuki.
le 15 Nov 2020
Modifié(e) : Setsuna Yuuki.
le 15 Nov 2020
Another way:
x = linspace(-6,12,2000);
y = abs(x-4)+abs(x.^2-5*x+6)-abs(x+4)+4;
plot(x,y,'LineWidth',2)

Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!