mathematica - 创建特定长度的列表和向量

发布于 2024-08-23 08:39:36 字数 99 浏览 2 评论 0原文

在 Mathematica 中,

  1. 如何创建长度为 n 的列表 并用零填充?
  2. 我怎样才能 创建长度为 n 的向量并填充 带零?

In Mathematica,

  1. How can I create a list of length n
    and fill with zeroes?
  2. How can I
    create a vector of length n and fill
    with zeroes?

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

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

发布评论

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

评论(2

不交电费瞎发啥光 2024-08-30 08:39:37

版本 6.0 及更高版本包含一个新函数 ConstantArray 来完成此操作,并且比使用 Table 更有效:

In[2]:= ConstantArray[0,10]
Out[2]= {0,0,0,0,0,0,0,0,0,0}

此处的文档:
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 using Table:

In[2]:= ConstantArray[0,10]
Out[2]= {0,0,0,0,0,0,0,0,0,0}

Documentation here:
http://reference.wolfram.com/mathematica/ref/ConstantArray.html

ゃ懵逼小萝莉 2024-08-30 08:39:37

在 Mathematica 中,列表和向量之间没有区别。您可以使用 Table 函数生成长度为 n 的列表:

x = Table[0, {n}]
(* If n was 4, x would now be the list {0, 0, 0, 0} *)

In Mathematica, there's no distinction between lists and vectors. You can use the Table function to generate a list of length n:

x = Table[0, {n}]
(* If n was 4, x would now be the list {0, 0, 0, 0} *)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文