|  |  D.14.5.1 catNets Procedure from librarynets.lib(see  nets_lib).
 
Example:Usage:
catNets(N,M); N,M Nets
 
Return:
horizontal concatenation of N and M
Theory:
The nets are concated horizontally with alignment at the top row. Can also be called with +.
 |  | LIB "nets.lib";
Net A = net("aaa");
Net B = net("b");
catNets(A,B);
==> aaab
==> 
A+B;
==> aaab
==> 
 | 
 
 |