将矩阵值分配给变量或从矩阵中检索值
我试图将由矩阵运算确定的值放入矩阵中,作为单独函数中的值。
本质上:
Matrix=[x,y]
我只需要一种方法来获取 x 和 y 值来使用它们。
函数=xsin(xt)+ycos(yt)
I am trying to put values determined by matrix operations, thus in a matrix, as values in a separate function.
Essentially:
Matrix=[x,y]
I just need a way to get out the x and y values to use them.
Function=xsin(xt)+ycos(yt)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想要矩阵中的 x 和 y 并将它们分配给可以在方程中使用的变量
如果您实际上有一个像 numpy 这样的矩阵,那么可能是以下 问题可能更多你在寻找什么。
If you just want x and y from your matrix and assign them to a variable that you can use in your equation
If you actually have a matrix like with numpy then maybe the following question may be more what you are looking for.
如果您想访问
Matrix
中的x
和y
值如果您想在这些值中进行子项:
如果您尝试在方程,您可能喜欢
sympy
库If you want to access the
x
andy
values fromMatrix
If you want to sub in those values:
If you are trying to sub in the equations, you may like the
sympy
library