|
D.15.11.50 interpretList
Procedure from library modules.lib (see modules_lib).
- Return:
- interpretation of Elements in some abstract structure defined by the user or into a Module
Example:
| LIB "modules.lib";
ring R;
matrix a[5][4];
Module M = coker(a+1);
Module N = simplePrune(simplePrune(simplePrune(simplePrune(M))));
Vector V = [x+y],N;
Vector W = [x2+y2+3*z2],N;
Vector U = [x+2y+27z],N;
list L = U,V,W;
//interpretList(L,3);
|
|