如何在 Asymptote 中创建一个嵌套数组,例如,[[1,2,3],[4,5,6]]
调用数组 1 的元素 1 等等?
答案1
交互模式下的图示:
$ asy
Welcome to Asymptote version 2.41 (to view the manual, type help)
> int[][] a = {{1,2,3},{4,5,6}};
> a // please print a
1 2 3
4 5 6
> a[1][1] // index-1 entry of index-1 array in a
5
> a[1] // index-1 array in a
0: 4
1: 5
2: 6