Labeling axes in VectorFieldPlot3D?
- To: mathgroup at smc.vnet.net
- Subject: [mg85908] Labeling axes in VectorFieldPlot3D?
- From: Jerry <Jer75811 at yahoo.com>
- Date: Wed, 27 Feb 2008 04:29:49 -0500 (EST)
This works OK in V6
<< "VectorFieldPlots`"
m = {1, 0, 0};
r = {x, y, z}/Sqrt[x^2 + y^2 + z^2];
B = (3 (m.r) r - m)
VectorFieldPlot3D[B, {x, -1, 1}, {y, -1, 1}, {z, 0.01, 1},
VectorHeads -> True]
From Options[VectorFieldPlot3D] I see AxesLabel -> None
listed. But inserting that option in the plot statement is
ignored -- and AxesLabel is made red -- apparently something
it doesn't like. Sure would like to identify the 3 axes,
can someone help? Thanks.