cells
语法
cells(obj, row, col)
参数
obj 矩阵。
row 整型向量,表示行坐标。
col 与 row 等长的整型向量,表示列坐标。
详情
返回一个由矩阵中 row 和 col 定位的元素组成的向量。
例子
m=(1..15).reshape(3:5)
m;
col1 | col2 | col3 | col4 | col5 |
---|---|---|---|---|
1 | 4 | 7 | 10 | 13 |
2 | 5 | 8 | 11 | 14 |
3 | 6 | 9 | 12 | 15 |
// 取矩阵中下标为 [0,1] 和 [0,2] 两个元素
cells(m, 0 0, 1 2)
# output
[4,7]
// 取矩阵对角线上的元素
index = 0..2
cells(m, index, index)
# output
[1, 5, 9]