matlab中有没有获取矩阵斜对角线的函数?
A=[a_11, a_12; a_21, a_22]
倾斜对角线为[a_12, a_21]
。现在,我翻转矩阵并使用 diag。
A=[a_11, a_12; a_21, a_22]
The skew diagonal is [a_12, a_21]
. Right now, I flip the matrix around and use diag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为
fliplr
和diag
的替代方案,您可以直接索引到矩阵中,如下所示:As an alternative to
fliplr
anddiag
, you can index directly into the matrix like this: