Searched refs:dataPoints (Results 1 – 4 of 4) sorted by relevance
60 LineParameters theilSenLinearRegression (const std::vector<tcu::Vec2>& dataPoints) in theilSenLinearRegression() argument64 const int numDataPoints = (int)dataPoints.size(); in theilSenLinearRegression()72 const Vec2& ptA = dataPoints[i]; in theilSenLinearRegression()76 const Vec2& ptB = dataPoints[j]; in theilSenLinearRegression()90 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); in theilSenLinearRegression()120 …nfidence theilSenSiegelLinearRegression (const std::vector<tcu::Vec2>& dataPoints, float reportedC… in theilSenSiegelLinearRegression() argument122 DE_ASSERT(!dataPoints.empty()); in theilSenSiegelLinearRegression()127 const int numDataPoints = (int)dataPoints.size(); in theilSenSiegelLinearRegression()135 const tcu::Vec2& ptA = dataPoints[i]; in theilSenSiegelLinearRegression()142 const tcu::Vec2& ptB = dataPoints[j]; in theilSenSiegelLinearRegression()[all …]
49 LineParameters theilSenLinearRegression (const std::vector<tcu::Vec2>& dataPoints);66 …nfidence theilSenSiegelLinearRegression (const std::vector<tcu::Vec2>& dataPoints, float reportedC…
META-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts ...
6154 std::vector<tcu::Vec2> dataPoints (m_iterationOrder.size()); in checkSampleTemporalStability() local6159 dataPoints[m_iterationOrder[ndx]].x() = (float)ndx; in checkSampleTemporalStability()6160 dataPoints[m_iterationOrder[ndx]].y() = (float)(m_results[m_iterationOrder[ndx]].*target); in checkSampleTemporalStability()6163 lineFit = theilSenSiegelLinearRegression(dataPoints, 0.6f); in checkSampleTemporalStability()