Mathematica 的表格和 Octave 中的修改?
如何
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会这样做
,这里,
[1:3]
代表向量[1,2,3]
,.^
表示条目-明智的求幂。编辑问题后添加:
这些都是相当基本的问题。我认为你需要花一些时间学习Octave;例如,通读本教程。
I'd do this as
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.