how to summary graphics

how do summary graphics of two symfun? i don't see two graphics in one picture, but i do to summary the graphics.
thanks

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 2 月 16 日

0 投票

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 件のコメント

Federica Pucci
Federica Pucci 2019 年 2 月 17 日
if this function have the domain different, how do i?
for example:
f1(x,y) from x=0, x=1, y=0, y=1
f1(x,y) from x=1, x=2, y=0, y=1
i will summary this function and thier graohics.
thanks
Walter Roberson
Walter Roberson 2019 年 2 月 17 日
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])

サインインしてコメントする。

カテゴリ

質問済み:

2019 年 2 月 16 日

コメント済み:

2019 年 2 月 17 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by