Lines Matching refs:pSlopes

2551             ScMatrixRef pSlopes = GetNewMat(1,K); // from b1 to bK  in CalulateRGPRKP()  local
2552 if (!pMeans || !pMatZ || !pSlopes) in CalulateRGPRKP()
2586 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2588 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, false); in CalulateRGPRKP()
2591 fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalulateRGPRKP()
2595 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
2596 : pSlopes->GetDouble(i) , K-1-i, 0); in CalulateRGPRKP()
2606 lcl_ApplyUpperRightTriangle(pMatX, aVecR, pSlopes, pMatZ, K, false); in CalulateRGPRKP()
2708 ScMatrixRef pSlopes = GetNewMat(K,1); // from b1 to bK in CalulateRGPRKP() local
2709 if (!pMeans || !pMatZ || !pSlopes) in CalulateRGPRKP()
2745 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2747 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, true); in CalulateRGPRKP()
2750 fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalulateRGPRKP()
2754 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
2755 : pSlopes->GetDouble(i) , K-1-i, 0); in CalulateRGPRKP()
2765 lcl_ApplyUpperRightTriangle(pMatX, aVecR, pSlopes, pMatZ, K, true); in CalulateRGPRKP()
3057 ScMatrixRef pSlopes = GetNewMat(1,K); // from b1 to bK in CalculateTrendGrowth() local
3058 if (!pMeans || !pSlopes) in CalculateTrendGrowth()
3092 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3094 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, false); in CalculateTrendGrowth()
3097 lcl_MFastMult(pMatNewX,pSlopes,pResMat,nRXN,K,1); in CalculateTrendGrowth()
3100 double fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalculateTrendGrowth()
3116 ScMatrixRef pSlopes = GetNewMat(K,1); // row from b1 to bK in CalculateTrendGrowth() local
3117 if (!pMeans || !pSlopes) in CalculateTrendGrowth()
3151 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3153 lcl_SolveWithUpperRightTriangle(pMatX, aVecR, pSlopes, K, true); in CalculateTrendGrowth()
3156 lcl_MFastMult(pSlopes,pMatNewX,pResMat,1,K,nCXN); in CalculateTrendGrowth()
3159 double fIntercept = fMeanY - lcl_GetSumProduct(pMeans,pSlopes,K); in CalculateTrendGrowth()