Mathematica中如何让两个函数的图像显示在同一坐标系中?

2024-12-22 01:44:22
推荐回答(1个)
回答1:

Plot[x^2, {x, 0, 3.5}]
Plot[x^3, {x, 0, 3.5}]
ListPlot[{1, 4, 9}]
Show[Plot[x^2, {x, 0, 3.5}],Plot[x^3, {x, 0, 3.5}], ListPlot[{1, 4, 9}]]