|  |  D.15.23.49 interpretElem Procedure from librarymodules.lib(see  modules_lib).
 
Example:Return:
interpretation of a Vector with # steps or until can't interpret further
 |  | 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;
interpretElem(V,3);
==> | 0   |
==> | 0   |
==> | 0   |
==> | x+y |
==> 
==> 
 | 
 
 |