如何在 Mathematica 中隐藏评估结果?
例子: Array = Range[1000]
我将看到 1000 个数字。我可以隐藏这个输出吗?
在 Maple 中,这个问题通过在末尾添加“:”来解决。
example:
Array = Range[1000]
I'll see 1000 numbers. Could I hide this output?
In Maple this problem solve by adding a ":" at the end.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这 ”;”将结果隐藏在 Mma 中。
哈!
The ";" hides the results in Mma.
HTH!
在
;
中结束命令,如下所示:有用的链接:
;
上的帮助页面End the command in a
;
like so:Useful links:
;
你在末尾加了一个分号。 (例如:ar=范围[1000];)
you put a semicolon at the end. (eg: ar=Range[1000];)
首先,在 Mathematica 中不应使用大写的变量名称。值“Array”是一个内置函数,Mathematica 不允许您为其赋值。
上面的答案是完全正确的,但还有一些人可能会喜欢的另一个答案。 Mathematica 前端会重新格式化它认为可能难以阅读的输出。例如,
array = Range[100000]
不会打印一个巨大的列表,而是会打印:
“生成了一个非常大的输出。这是它的示例:”
然后它将仅显示列表的开头和结尾,并带有各种省略号。尝试一下。您会在输出读数下方找到 4 个按钮:
“显示更少”、“显示更多”、“显示完整输出”、“设置大小限制...”
它们的含义非常明确。您可以更改 Mathematica 的选项,该选项告诉它在什么尺寸下认为输出太大而无法显示在屏幕上。
您可以通过单击“设置大小限制”或转到“首选项”菜单中的“评估”选项卡来找到此选项。如果您使用的是 Mac,则可以在“编辑”>“首选项”或“Mathematica”>“首选项”下找到“首选项”菜单。在此对话框中,您将找到一个名为“截断前的最大输出大小”的字段。您可以在此处指定 Mathematica 在截断您的输入以方便使用之前可以在屏幕上显示的字节数。
First, in Mathematica you should not use capitalized variable names. The value "Array" is a built in function and Mathematica will not let you assign a value to it.
The answers above are completely correct, but there is another answer which some people might like. The Mathematica front end reformats output that it thinks might be hard to read. For example,
array = Range[100000]
will not print a giant list but instead will print:
"A very large output was generated. Here is a sample of it:"
It will then show only the beginning and end of the list with an ellipsis of sorts. Try it out. You will find 4 buttons beneath the output reading:
"Show Less", "Show More", "Show Full Output", "Set Size Limit..."
Their meaning is pretty clear. You can change Mathematica's option which tells it at what size to consider the output too big to put on the screen.
You can find this option by clicking on "Set Size Limit" or by going to the Evaluation Tab in the Preferences menu. The Preferences menu is found under Edit>Preferences or Mathematica>Preferences if you are using a Mac. In this dialog you will find a field called "Maximum output size before truncation". Here you can specify the number of bytes Mathematica can put on the screen before it should truncate your input for easier use.