mathematica - 创建特定长度的列表和向量
在 Mathematica 中,
- 如何创建长度为 n 的列表 并用零填充?
- 我怎样才能 创建长度为 n 的向量并填充 带零?
In Mathematica,
- How can I create a list of length n
and fill with zeroes? - How can I
create a vector of length n and fill
with zeroes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
版本 6.0 及更高版本包含一个新函数
ConstantArray
来完成此操作,并且比使用Table
更有效:此处的文档:
http://reference.wolfram.com/mathematica/ref/ConstantArray.html
Version 6.0 and up include a new function
ConstantArray
for doing exactly this, and is more efficient than usingTable
:Documentation here:
http://reference.wolfram.com/mathematica/ref/ConstantArray.html
在 Mathematica 中,列表和向量之间没有区别。您可以使用
Table
函数生成长度为 n 的列表:In Mathematica, there's no distinction between lists and vectors. You can use the
Table
function to generate a list of length n: