无法在 Mathematica 试用版中使用 Export()

发布于 2024-10-08 03:21:49 字数 172 浏览 1 评论 0原文

每次我尝试使用 Export 时,都会收到此错误:

General::unavail: Export is not available in this version of Mathematica.

为什么试用版不提供 Export()?

谢谢。

Every time I try to use Export, I get this Error:

General::unavail: Export is not available in this version of Mathematica.

Why isn't Export() available with the Trial version?

Thanks.

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

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

发布评论

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

评论(1

殊姿 2024-10-15 03:21:49

如果您想了解 Mathematica 如何与更广泛的系统集成,这并不是一个完全不合理的问题。试用版过去是禁用保存的,大概情况仍然如此。 Export 对此提供了一个非常有用的解决方法,因此它也被淘汰了。

您的选择是:

  • 复制/粘贴并重新格式化。将嵌套列表转换为 CSV 并不难。复制/粘贴图形也很容易。但是,如果您想以编程方式执行此操作,那么这些都没有帮助。
  • 尝试 rcollyer 的 Put/Write
  • 为家庭版支付 295 美元(如果您符合资格,则为学生版支付 295 美元。)
  • 您还可以尝试使用 Run 命令:

cmd = "echo " <> ToString[{{your}, {data}, {here}}] <> “ | cat - >> 输出.dat”
Run[cmd]

ToString[...] 替换为您拥有的任何表达式。这不适用于图形,但也许还有另一种方法?也许是原始位图数据。编辑:是的,使用例如 ImageData[your_img, "Byte"] 获取 0..255 RGB 值的字节数组。 ImageData 支持几种类型和交错,因此您的下游程序应该能够将其读回。

It's not an entirely unreasonable question if you're trying to see how Mathematica might integrate with a wider set of systems. Trial versions used to be save disabled and presumably this is still the case. Export makes a pretty useful workaround for that, so it too is knocked out.

Your choices are:

  • Copy/paste and reformat. It's not hard to turn a nested list into a CSV. Copy/pasting graphics is easy too. None of this helps if you want to do this programatically, however.
  • Try rcollyer's Put/Write.
  • Pony up $295 for the Home Edition (or somewhat less for Student, if you qualify.)
  • You could also try using the Run command:

cmd = "echo " <> ToString[{{your}, {data}, {here}}] <> " | cat - >> output.dat"
Run[cmd]

Replace that ToString[...] with any expression you have. This won't work for graphics but perhaps there's another way there? Raw bitmap data maybe. EDIT: Yes, use eg ImageData[your_img, "Byte"] to get a byte array of 0..255 RGB values out. ImageData supports a few types and interleaving, so your downstream program should be able to read it back in.

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