connectBiasedGroups command creates links from one group to another based on a specified degree of topographic bias and a pattern of connection.Usage for this is
connectBiasedGroups <group1> <group2> [-strength <strength> | -p <proj-type> | -d <standard deviation> | -mean <mean> | -range <range> | -type <link-type>
The first group sends the projections and the second group receives them.
Possible projection types (or connectivity patterns) are BIASED_IN and BIASED_OUT. Strength is a floating point number in the range (0,1] specifying the density of the connectivity, as described below. Standard deviation is typically a positive floating point number that determines the topographic bias for establishing connections between spatially oriented units of the two
groups.Standard deviation of -1 holds a special meaning. It is used to indicate uniform connectivity.By default, the projection type used is BIASED_OUT,strength is 1.0 and standard deviation is -1.0 .
In describing the projection types, S is the specified connectivity strength, I is the number of units in the sending group, O is the number of units in the receiving group and f() is the floor function.
BIASED_OUT causes each sending unit to project to exactly f(S*O) receiving
units.
BIASED_IN ensures that each receiving unit has exactly f(S*I) inputs.
<range> , <mean> and <link-type> paramaters have the same meaning as in standard connectGroups command.