how to make graph for this function
2 views (last 30 days)
Show older comments
f:y=Ix−4I+Ix2−5x+6I−Ix+4I+4.
0 Comments
Answers (1)
Setsuna Yuuki.
on 15 Nov 2020
Edited: Setsuna Yuuki.
on 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 Comments
Setsuna Yuuki.
on 15 Nov 2020
Edited: Setsuna Yuuki.
on 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)

See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!