我创建了以下矩阵,并且我想确定矩阵现在具有的行/列数:
module AswanBigMatrix {
use LinearAlgebra;
proc main() {
var A = Matrix(
[0.0, 0.8, 1.1, 0.0, 2.0]
,[0.8, 0.0, 1.3, 1.0, 0.0]
,[1.1, 1.3, 0.0, 0.5, 1.7]
,[0.0, 1.0, 0.5, 0.0, 1.5]
,[2.0, 0.0, 1.7, 1.5, 0.0]
);
}
writeln(A.domain);
}
这返回{0..4, 0..4}
是有道理的,但我不能以A.domain[0]
获取长度为例。