Home Online Manual
Top
Back: nets_lib
Forward: net
FastBack:
FastForward:
Up: nets_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.14.5.1 catNets

Procedure from library nets.lib (see nets_lib).

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 +.

Example:
 
LIB "nets.lib";
Net A = net("aaa");
Net B = net("b");
catNets(A,B);
==> aaab
==> 
A+B;
==> aaab
==>