MATHEMATICA

来源:百度知道 编辑:UC知道 时间:2024/05/21 08:49:05
图像怎么画在一个坐标系内

试一试函数 Show[],可以合并图像

Show[graphics,options]
shows graphics with the specified options added.

Show[g1,g2,...]
shows several graphics combined.

在帮助里搜Show,可以看到更多相关函数

Axes->True有坐标系,Axes->False没坐标系
Plot[x,{x,0,1}]有坐标
Plot[x,{x,0,1},Axes->False]无坐标
Plot3d,Graphics等也一样
Graphics[Circle[],Axes->True]