symbolic triangularization
[f [,sexp]]=trianfml(f [,sexp])
Symbolic triangularization of the matrix f ; triangularization is performed by elementary row operations; sexp is a set of common expressions stored by the algorithm.
A=['1','2';'a','b']
W=trianfml([A,`string`_(`eye`_(2,2))])
U=W(:,3:4)
a=5;b=6;
A=`evstr`_(A)
U=`evstr`_(U)
U*A
`evstr`_(W(:,1:2))