Mathematica绘制图形

绘制平面图形的命令
Plot 显函数绘图
ParametricPlot 参数方程绘图
PolarPlot 极坐标方程绘图
ContourPlot 隐函数绘图
ListPlot 绘制点列图

Plot[x Sin[1/x],{x,-1,1}]
Mathematica绘制图形

Mathematica绘制图形
绘制三维图形
Plot3D 绘制二元函数对应的空间曲面
ParametricPlot3D 绘制空间曲线、曲面参数方程对应空间曲线与曲面

Mathematica绘制图形
Mathematica绘制图形
常见的图元绘制命令
Circle 、Disk、Rectangle、Line、Point|、Text、Polygon、Arrow、Sphere、Cylinder、Cone:分别绘制圆或圆弧、填充的圆或扇形区域、矩形、直线、点,多边形、箭头、文字、绘制球、圆柱、圆锥
注意
平面图元对象借助于Graphics来实现,三维图元对象则借助于Graphics3D来实现。
Show[ Graphics[{Dashed, Circle[], Blue, Rectangle[{-0.3, -0.2}, {0.3, 0.2}], Yellow , Text["点列图", {0, 0}]}], ListPlot[ Table[{Cos[t], Sin[t]}, {t, 0, 2 Pi, Pi/12}], PlotStyle -> {Red, Pointsize[0.05]}], AspectRatio -> Automatic]

Mathematica绘制图形
–慕课,国防科技大学高等数学一,第一周,第二讲,绘制图形 ,笔记