1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-30 00:24:44 +00:00

XYStatData (new): fit implemented (TO BE TESTED)

This commit is contained in:
2016-03-15 19:13:20 +00:00
parent b165a98a93
commit 9f67ead605
3 changed files with 324 additions and 73 deletions

View File

@@ -395,6 +395,8 @@ void FitInterface::updateLayout(void)
{
Index size, ifit;
layout.nXFitDim = 0;
layout.nYFitDim = 0;
layout.totalSize = 0;
layout.totalXSize = 0;
layout.totalYSize = 0;
@@ -413,6 +415,7 @@ void FitInterface::updateLayout(void)
{
if (!xIsExact_[i])
{
layout.nXFitDim++;
size = getXFitSize(i);
layout.xSize.push_back(size);
layout.totalXSize += size;
@@ -448,6 +451,7 @@ void FitInterface::updateLayout(void)
{
Index s = 0;
layout.nYFitDim++;
size = getYFitSize(j);
layout.ySize.push_back(size);
layout.totalYSize += size;