102103104105106107108109
this.rbf = new FnRBF[rbfCount]; for (int i = 0; i < rbfCount; i++) { final int rbfIndex = inputWeightCount + ((inputCount + 1) * i); this.rbf[i] = new GaussianFunction(inputCount, this.longTermMemory, rbfIndex); } }
101102103104105106107108