标签: r loops matrix
我有一个方形矩阵M,尺寸为25x25。 然后我想创建25个矩阵如下:
M
答案 0 :(得分:2)
this little snippet will do:
lapply(1:25, function(i) M[-i, -i])