如何用mathematica同时画出两个函数图像,其中一个是x=1

好像默认是y=f(x)的形式。这个怎么解决?望高手指点
谢谢几位,我试了一下,还有个问题,图画出来了,但没有显示坐标轴,这个需要什么命令?

第1个回答  2010-03-14
使用隐函数绘图Implicitplot 5.0版本
现在统一如下所示
ContourPlot[{y == Sin[x], x == 0.5}, {x, -1, 1}, {y, -1, 1}]本回答被提问者采纳
第2个回答  2010-03-14
ContourPlot[{y == Sin[x], x == 1}, {x, -2, 2}, {y, -2, 2}]
这里假设第一个是正弦函数
第3个回答  2010-03-14
Like this pattern
Plot[{Sin[x],Cos[x]},{x,0,Pi}];
That is OK
You will obtain a graph with a sine curve and a cosine curve whose independent variable ranges from 0 to Pi
相似回答