如何存储长符号计算的结果以供以后使用?
我的计算是这样的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 保存
使用如下:
并使用 获取:
Try Save
Use like:
And load with Get: