Python Numpy Matrix - 返回矩阵中包含的值?
我有一个 1x1 矩阵,其中包含一个值。我只想要价值。
array([[-0.16666667+0.66666667j]])
我想要该矩阵内的复数。我怎样才能得到它?
I have a 1x1 matrix that contains a value. I want just the value.
matrix([[-0.16666667+0.66666667j]])
I want the complex number inside that matrix. How do I get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者,当我们这样做时:
让OP相信上面实际上是一个复数:^) --
[编辑以纠正我的数字和OP之间的符号差异。没有改变任何东西,但一旦我注意到就无法忍受看它..]
or, while we're at it:
To convince the OP that the above is actually a complex number :^) --
[Edited to correct a sign difference between my number and the OP's. Doesn't change anything but couldn't stand looking at it once I noticed..]
使用上面示例中的数据,以下 Python 代码片段似乎也可以工作。
The following Python snippet also seems to work, using the data in your example above.