如何更改 Maple 中矩阵中的元素?

发布于 2024-12-03 09:02:58 字数 53 浏览 2 评论 0原文

问题是:

如何更改 Maple 中矩阵中的元素?

是否可以?

The question is:

How can I change an element in a matrix in Maple?

Is it possible?

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

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

发布评论

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

评论(1

拧巴小姐 2024-12-10 09:02:58

是的,这当然是可能的。 (它是矩阵的主要属性之一,它是一个可变的数据结构。即,它的条目可以更改。)

如果您已将矩阵分配给名称 A,那么您可以更改使用正常赋值在第 4 行和第 5 列中输入:

A[4,5] := 17.34;

有关操作矩阵、向量和数组的更多信息,请参阅 rtable_indexing 帮助页面

请注意 Matrixmatrix不同,后者现已被弃用。

Yes, it is certainly possible. (It's one of the primary properties of a Matrix, it is a mutable data structure. ie. its entries can be changed.)

If you have assigned a Matrix to the name A, then you can change the entry in the 4th row and 5th column by using normal assignment:

A[4,5] := 17.34;

For more on manipulating Matrices, Vectors, and Arrays, see the rtable_indexing Help page

Note that Matrix is different from matrix, the latter of which is now deprecated.

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