| LIB "ncrat.lib";
ncInit(list("x", "y"));
ncrat f = ncratFromString("x*y");
ncrep r = ncrepGet(f);
print(r.mat);
==> 0, 0, x, -1,
==> 0, 1, -1,0,
==> y, -1,0, 0,
==> -1,0, 0, 0
list l = ncrepPencilGet(r, list(x, y));
print(l[1]);
==> [1]:
==> 1
==> [2]:
==> x
==> [3]:
==> y
print(l[2][1]);
==> 0, 0, 0, -1,
==> 0, 1, -1,0,
==> 0, -1,0, 0,
==> -1,0, 0, 0
print(l[2][2]);
==> 0,0,1,0,
==> 0,0,0,0,
==> 0,0,0,0,
==> 0,0,0,0
print(l[2][3]);
==> 0,0,0,0,
==> 0,0,0,0,
==> 1,0,0,0,
==> 0,0,0,0
|