void GMMfitData::defaultDonly(Gaussian &g) { Vector2d mu; mu<< 0.0, 0.98; g.setMu(mu); Matrix2d sigma; sigma<< 0.0012, 0.0000, 0.0000, 0.0015; g.setSigma(sigma); }
void GMMfitData::defaultLowFRET(Gaussian &g) { Vector2d mu; mu<< 0.15, 0.5; g.setMu(mu); Matrix2d sigma; sigma<< 0.050, 0.000, 0.000, 0.020; g.setSigma(sigma); }
void GMMfitData::defaultAonly(Gaussian &g) { Vector2d mu; mu<< 1.0, 0.1; g.setMu(mu); Matrix2d sigma; sigma<< 0.020, -0.001, -0.001, 0.005; g.setSigma(sigma); }