Mathematica怎么给平面坐标系添加箭头
1、利用Mathematica画平面图时默认使用的是平面直角坐标系,没有箭头。Graphics[{}, Axes -> True]

3、利用AxesStyle函数给平面直角坐标系x轴和y轴分别添加上箭头。给x轴添加箭头Graphics[{}, 帆歌达缒Axes -> True, AxesStyle -> {{Arrowheads[0.05]}, {}}]给y轴添加箭头Graphics[{}, Axes -> True, AxesStyle -> {{}, {Arrowheads[0.05]}}]给x轴、y轴同时添加箭头Graphics[{}, Axes -> True, AxesStyle -> {Arrowheads[0.05], Arrowheads[0.05]}]


