|  |  D.15.26.25 stackNets Procedure from librarynets.lib(see  nets_lib).
 
Example:Usage:
stackNets(N,M); N,M Nets
 
Return:
vertical concatenation of N and M
Theory:
The nets are concated vertically with alignment at the left column.
 |  | LIB "nets.lib";
Net A = net("aaa");
Net B = net("b");
stackNets(A,B);
==> aaa
==> b
==> 
A+B;
==> aaab
==> 
 | 
 |