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
2019년 2월 16일
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
2019년 2월 17일
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])
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!