如何在mathematica中的ContourPlot中使用With?

发布于 2024-08-08 07:09:26 字数 131 浏览 0 评论 0原文

我想使用类似的东西:

ContourPlot [Abs[z-1] == 2]

并将 z 定义为 = x + iy

我在某处看到了类似 With 函数的示例,但我再也找不到它了我所有的尝试都没有成功。

I want to use something like:

ContourPlot [Abs[z-1] == 2]

and to define z as being = x + iy

I saw somewhere an example like that with the With function, but I can't find it anymore and all my tries are not being successful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你穿错了嫁妆 2024-08-15 07:09:26

是的,你可以。您只需确保将 With 放在 ContourPlot 之外:

With[{z = x + I y},
   ContourPlot[Abs[z - 1] == 2, {x, -2, 2}, {y, -2, 2}]]

您也可以使用 Evaluate

ContourPlot[
  With[{z = x + I y}, Abs[z - 1] == 2] // Evaluate, {x, -2, 2}, {y, -2, 2}]

这通常是绘图的情况函数,几乎总是以非标准方式评估它们的参数。

Yes, you can. You just need to be sure to either put the With outside of the ContourPlot:

With[{z = x + I y},
   ContourPlot[Abs[z - 1] == 2, {x, -2, 2}, {y, -2, 2}]]

You can also use Evaluate:

ContourPlot[
  With[{z = x + I y}, Abs[z - 1] == 2] // Evaluate, {x, -2, 2}, {y, -2, 2}]

This is generally the case with plotting functions, which almost always evaluate their arguments in a non-standard way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文