如何存储长符号计算的结果以供以后使用?

发布于 2024-11-05 15:19:24 字数 257 浏览 1 评论 0原文

我的计算是这样的:

f[x_]:= (*runs fast*)
g[x_]:=(*runs fast*)
h[x_]=depends on f[x],g[x] (*runs slow ~5mins*)

现在我只需要 h[x] 的结果,每次重新启动 mma 时,我基本上都会重做相同的计算以获得 h[x] >,当它可以被存储时。有什么方法可以保存符号结果,并在需要时导入它吗?

My calculations are something like this:

f[x_]:= (*runs fast*)
g[x_]:=(*runs fast*)
h[x_]=depends on f[x],g[x] (*runs slow ~5mins*)

Now I need only the results of h[x] and every time I restart mma, I essentially redo the same calculations to get h[x], when it could have been stored. Is there some way I can save the symbolic results, and just import it anytime I need it?

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

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

发布评论

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

评论(1

手心的温暖 2024-11-12 15:19:24

尝试 保存

使用如下:

Save["h-defs.m", h]

并使用 获取

<< "h-defs.m"

Try Save

Use like:

Save["h-defs.m", h]

And load with Get:

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