|  |  D.14.1.18 arrLocalize Procedure from libraryarr.lib(see  arr_lib).
 
Example:Usage:
arrLocalize(A, v); arrangement A, intvec v;
Return:
arr: the localized arrangement A_X, i.e. A_X only contains the hyperplanes
which contain the flat X, which is defined by the equations A[v]
 See also:
 arrCone;
 arrDecone;
 arrEssentialize;
 arrIsEssential;
 arrRestrict.|  | LIB "arr.lib";
ring R = 0,(x,y,z),dp;
arr A=arrTypeB(3);
intvec v=5,8;
arr B=arrLocalize(A,v);
B;
==> _[1]=x-y
==> _[2]=x+y
==> _[3]=x
==> _[4]=y
==> 
 | 
 
 |