how to make graph for this function
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
f:y=Ix−4I+Ix2−5x+6I−Ix+4I+4.
0 commentaires
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
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)

Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!