Lines Matching refs:pSlopes

2552             ScMatrixRef pSlopes = GetNewMat(1,K); // from b1 to bK  in CalulateRGPRKP()  local
2553 if (!pMeans || !pMatZ || !pSlopes) in CalulateRGPRKP()
2587 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2589 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, false); in CalulateRGPRKP()
2592 fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalulateRGPRKP()
2596 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
2597 : pSlopes->GetDouble(i) , K-1-i, 0); in CalulateRGPRKP()
2607 lcl_ApplyUpperRightTriangle(pMatX, aVecR, pSlopes, pMatZ, K, false); in CalulateRGPRKP()
2709 ScMatrixRef pSlopes = GetNewMat(K,1); // from b1 to bK in CalulateRGPRKP() local
2710 if (!pMeans || !pMatZ || !pSlopes) in CalulateRGPRKP()
2746 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2748 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, true); in CalulateRGPRKP()
2751 fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalulateRGPRKP()
2755 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
2756 : pSlopes->GetDouble(i) , K-1-i, 0); in CalulateRGPRKP()
2766 lcl_ApplyUpperRightTriangle(pMatX, aVecR, pSlopes, pMatZ, K, true); in CalulateRGPRKP()
3058 ScMatrixRef pSlopes = GetNewMat(1,K); // from b1 to bK in CalculateTrendGrowth() local
3059 if (!pMeans || !pSlopes) in CalculateTrendGrowth()
3093 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3095 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, false); in CalculateTrendGrowth()
3098 lcl_MFastMult(pMatNewX,pSlopes,pResMat,nRXN,K,1); in CalculateTrendGrowth()
3101 double fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalculateTrendGrowth()
3117 ScMatrixRef pSlopes = GetNewMat(K,1); // row from b1 to bK in CalculateTrendGrowth() local
3118 if (!pMeans || !pSlopes) in CalculateTrendGrowth()
3152 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3154 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, true); in CalculateTrendGrowth()
3157 lcl_MFastMult(pSlopes,pMatNewX,pResMat,1,K,nCXN); in CalculateTrendGrowth()
3160 double fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalculateTrendGrowth()