how to summary graphics
Show older comments
how do summary graphics of two symfun? i don't see two graphics in one picture, but i do to summary the graphics.
thanks
Answers (1)
Walter Roberson
on 16 Feb 2019
syms x
f1(x) = x^2 - 4*x + 3;
f2(x) = x^3 - 4*x + 3;
then
fplot([f1 f2], [0 4])
or
fplot(f1, [0 4])
hold on
fplot(f2, [0 4])
hold off
2 Comments
Federica Pucci
on 17 Feb 2019
Walter Roberson
on 17 Feb 2019
fsurf(f1, [0 1 0 1])
hold on
fsurf(f1, [1 2 0 1])
hold off
Though in this particular case, that would be the same as
fsurf(f1, [0 2 0 1])
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!