使用 python 在 matplotlib 中绘制矩阵的一半
如何仅绘制矩阵的一半,例如矩阵的上/下部分,例如使用 pcolor ?
假设我有一个 xn 矩阵,我使用 pcolor(my_matrix) 绘制它。我只想显示下半部分,因为其他值是多余的。这怎么能做到呢?
谢谢。
How can I draw only half of a matrix, e.g. the upper / lower part of a matrix, with pcolor for example?
Suppose I have a n x n matrix and I draw it using pcolor(my_matrix). I want only the lower half to be shown since other values are redundant. How can this be done?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在另一半绘制零可以吗?
Is it OK to plot zeros in the other half?
使用set_ylim:
Use
set_ylim
: