how to make graph for this function
5 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Setsuna Yuuki.
2020-11-15
编辑:Setsuna Yuuki.
2020-11-15
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 个评论
Setsuna Yuuki.
2020-11-15
编辑:Setsuna Yuuki.
2020-11-15
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)

另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!