如何更改 Maple 中矩阵中的元素?
问题是:
如何更改 Maple 中矩阵中的元素?
是否可以?
The question is:
How can I change an element in a matrix in Maple?
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
问题是:
如何更改 Maple 中矩阵中的元素?
是否可以?
The question is:
How can I change an element in a matrix in Maple?
Is it possible?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的,这当然是可能的。 (它是矩阵的主要属性之一,它是一个可变的数据结构。即,它的条目可以更改。)
如果您已将矩阵分配给名称
A
,那么您可以更改使用正常赋值在第 4 行和第 5 列中输入:有关操作矩阵、向量和数组的更多信息,请参阅 rtable_indexing 帮助页面
请注意
Matrix
与matrix
不同,后者现已被弃用。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:For more on manipulating Matrices, Vectors, and Arrays, see the rtable_indexing Help page
Note that
Matrix
is different frommatrix
, the latter of which is now deprecated.