Esempio n. 1
0
 protected BaseMGUAModel(int modelIndex, int roundIndex, Matrix xValues, Matrix yValues)
 {
     ModelIndex = modelIndex;
     RoundIndex = roundIndex;
     XValues    = xValues;
     YValues    = yValues;
     SubModels  = new WienerBinaryModel[2];
 }
Esempio n. 2
0
 public WienerBinaryModel(int modelIndex, int roundIndex, Matrix xValues, Matrix yValues, WienerBinaryModel firstSubModel, WienerBinaryModel secondSubModel) : base(modelIndex, roundIndex, xValues, yValues)
 {
     SubModels[0] = firstSubModel;
     SubModels[1] = secondSubModel;
     SetModelCoefficients();
 }