当鼠标光标位于 Wolfram|Alpha 中的 2D 图上时,会出现一对灰线,帮助您读取 x 和 y 轴的坐标。 例如,我将鼠标悬停在下面 Airy 函数图中的一个转折点上。
以上也可以在 Mathematica 内部使用
WolframAlpha["Plot Ai(x)", {{"Plot", 1}, "Content"}]
它具有显示坐标的某种定位器的额外优势。
如何在正常的 Mathematica 图形/绘图中模拟这种行为?
这是您在评论中要求的功能之一:
locatorPlot[func_, r : {var_, __}, other___] :=
LocatorPane[
Dynamic[pos, (pos = {#, func /. var -> #}) & @@ # &],
Column[{Plot[func, r, other], Dynamic@pos}],
AutoAction -> True,
Appearance ->
Graphics[{Gray, Line @ {{{-1, 0}, {1, 0}}, {{0, -1}, {0, 1}}}},
ImageSize -> Full]
]
locatorPlot[AiryAi[z], {z, -11, 5}, ImageSize -> 400]
这是一个相当笨拙的更新来处理您的新请求:
locatorPlot[func_List, r : {var_, __}, other___] :=
DynamicModule[{pos, pos2},
LocatorPane[
Dynamic[pos, (pos = #; (pos2 = {#, First@Nearest[func /. var -> #, #2]}) & @@ #) &],
Plot[func, r, other,
Epilog ->
{Text[\[GrayCircle], Dynamic@pos2], Text[Dynamic@pos2, Dynamic@pos2, {-1.2, 0}]}
],
AutoAction -> True,
Appearance ->
Graphics[{Gray, Line@{{{-1, 0}, {1, 0}}, {{0, -1}, {0, 1}}}}, ImageSize -> Full]
]
]
locatorPlot[{AiryAi[z], Sin[z]}, {z, -11, 5}, ImageSize -> 400]
这是另一种使用 的方法Nearest
,这与西蒙的有点不同:
plot = Plot[{Sin[x], Cos[x]}, {x, -2 Pi, 2 Pi}];
With[{nf = Nearest[Flatten[Cases[Normal[plot], Line[p_, ___] :> p, Infinity], 1]]},
Show[plot,
Epilog ->
Dynamic[DynamicModule[{
pt = First[nf[MousePosition[{"Graphics", Graphics}, {0, 0}]]],
scaled = Clip[MousePosition[{"GraphicsScaled", Graphics}, {0, 0}], {0, 1}]
},
{
{If[scaled === None, {},
{Lighter@Gray, Line[{
{Scaled[{scaled[[1]], 1}], Scaled[{scaled[[1]], 0}]},
{Scaled[{1, scaled[[2]]}], Scaled[{0, scaled[[2]]}]}
}]
}]},
{AbsolutePointSize[7], Point[pt], White, AbsolutePointSize[5], Point[pt]},
Text[Style[NumberForm[Row[pt, ", "], {5, 2}], 12, Background -> White], Offset[{7, 0}, pt], {-1, 0}]}
]]
]
]
这是从我放置的示例中组合起来的。(我不喜欢与点跟踪相结合的自由浮动下降线;两者都感觉很好。)
这是我的版本,其行为类似于 Wolfram|Alpha 输出,除了它处理多个图。在 W|A 图形中,圆和文字跳到最近的曲线上,当光标不在图形上时完全消失。最好添加缺少的功能,并可能使代码更灵活。
WAPlot[fns_, range : {var_Symbol, __}] :=
DynamicModule[{pos, fn = fns},
If[Head[fn] === List, fn = First[Flatten[fn]]];
LocatorPane[Dynamic[pos, (pos = {var, fn} /. var -> #[[1]]) &],
Plot[fns, range, Method -> {"GridLinesInFront" -> True},
GridLines->Dynamic[{{#,Gray}}&/@MousePosition[{"Graphics",Graphics},None]]],
AutoAction -> True,
Appearance -> Dynamic[Graphics[{Circle[pos, Scaled[.01]],
Text[Framed[Row[pos, ", "], RoundingRadius -> 5,
Background -> White], pos, {-1.3, 0}]}]]]]
然后,例如
WAPlot[{{AiryAi[x], -AiryAi[x]}, AiryBi[x]}, {x, -10, 2}]
这是一个新版本,它使用MousePosition
而不是LocatorPane
窃取 W 先生的代码,以使圆移动到最近的曲线。现在的行为几乎与WolframAlpha
输出相同。
WAPlot[fns_, range : {var_Symbol, __}] :=
DynamicModule[{fnList = Flatten[{fns}]}, Plot[fnList, range,
GridLines ->
Dynamic[{{#, Gray}} & /@ MousePosition[{"Graphics", Graphics}]],
Method -> {"GridLinesInFront" -> True},
Epilog -> Dynamic[With[{mp = MousePosition[{"Graphics", Graphics}, None]},
If[mp === None, {},
With[{pos = {#1, First@Nearest[fnList /. var -> #1, #2]}& @@ mp},
{Text[Style["\[EmptyCircle]", Medium, Bold], pos],
Text[Style[NumberForm[Row[pos, ", "], 2], Medium], pos,
{If[First[MousePosition["GraphicsScaled"]] < .5, -1.3, 1.3], 0},
Background -> White]}]]]]
]]
输出看起来与以前的版本非常相似,所以我不会发布屏幕截图。
来自 Jens-Peer Kuska:
Manipulate[myPosition = p;
Plot[Sin[x], {x, 0, Pi},
Epilog -> {Point[p], Text[p, p + {0.4, 0}]}], {{p, {0, 0}},
Locator}]
从马克麦克卢尔:
labeledPointPlot[g_Graphics] :=
Manipulate[
Column[{Show[{g, Graphics@Point[pt]}], pt}], {pt,
Sequence @@ Transpose[PlotRange /. FullOptions[g]], Locator}];
labeledPointPlot[Plot[x^2, {x, -2, 2}]]
我找到了上面代码的来源,这是我之前写下的:
http://www.mathkb.com/Uwe/Forum.aspx/mathematica/10416/Mathematica-6-Graphics-Options