Mathematica 的表格和 Octave 中的修改?

发布于 2024-08-05 22:04:32 字数 139 浏览 2 评论 0原文

如何

a = Table[2^(2 k) + 1, {k, 1, 3}]
Last[a], First[a]
Append[a,3]

在 Octave 中进行 Mathematica 风格的操作?

How can I do Mathematica-style

a = Table[2^(2 k) + 1, {k, 1, 3}]
Last[a], First[a]
Append[a,3]

in Octave?

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

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

发布评论

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

评论(1

浅笑轻吟梦一曲 2024-08-12 22:04:32

我会这样做

2 .^ (2 * [1:3]) + 1

,这里,[1:3]代表向量[1,2,3].^表示条目-明智的求幂。

编辑问题后添加
这些都是相当基本的问题。我认为你需要花一些时间学习Octave;例如,通读本教程

I'd do this as

2 .^ (2 * [1:3]) + 1

Here, [1:3] stands for the vector [1,2,3] and .^ denotes entry-wise exponentiation.

Added after question was edited:
These are rather basic questions. I think you need to spend some time learning Octave; for instance, read through this tutorial.

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