选择主对角线元素
在下面显示的矩阵中,如何选择元素 01、09、17 和 25。来自 Egon 对我之前问题的回答 < a href="https://stackoverflow.com/questions/5528062/select-diagonal-elements-of-a-matrix-in-matlab">选择矩阵的对角元素在 MATLAB 中,我可以使用 c = (size(A)+1)/2; 选择中心值 25,但我想知道如何在 NW 方向选择上述元素。
A = [01 02 03 04 05 06 07
08 09 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35
36 37 38 39 40 41 42
43 44 45 46 47 48 49];
In the matrix shown below how can I select elements 01, 09, 17 and 25. From Egon's answer to my earlier question Select Diagonal Elements of a Matrix in MATLAB I am able to select the central value 25 using c = (size(A)+1)/2;
but I am wondering how to select above mentioned elements in NW direction.
A = [01 02 03 04 05 06 07
08 09 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35
36 37 38 39 40 41 42
43 44 45 46 47 48 49];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
diag
获取对角线上的元素。您可以将其限制为从左上角到中间的元素
Use
diag
to get elements on the diagonal.You can restrict this to the elements from the top left to the middle with
另一种方法是使用线性索引 。如果您有一个 N×N 矩阵,您可以按如下方式选择所需的元素:
Another way to do this is with linear indexing. If you have an N-by-N matrix, you can select the elements you want as follows: