Lines Matching refs:pMatY

2042                                           ScMatrixRef pMatY, SCSIZE nN)  in lcl_ApplyHouseholderTransformation()  argument
2046 double fNumerator = lcl_GetColumnSumProduct(pMatA, nC, pMatY, 0, nC, nN); in lcl_ApplyHouseholderTransformation()
2049 pMatY->PutDouble( in lcl_ApplyHouseholderTransformation()
2050 pMatY->GetDouble(row) - fFactor * pMatA->GetDouble(nC,row), row); in lcl_ApplyHouseholderTransformation()
2055 ScMatrixRef pMatY, SCSIZE nN) in lcl_TApplyHouseholderTransformation() argument
2059 double fNumerator = lcl_TGetColumnSumProduct(pMatA, nR, pMatY, 0, nR, nN); in lcl_TApplyHouseholderTransformation()
2062 pMatY->PutDouble( in lcl_TApplyHouseholderTransformation()
2063 pMatY->GetDouble(col) - fFactor * pMatA->GetDouble(col,nR), col); in lcl_TApplyHouseholderTransformation()
2204 double lcl_GetSSresid(ScMatrixRef pMatX, ScMatrixRef pMatY, double fSlope, in lcl_GetSSresid() argument
2211 fTemp = pMatY->GetDouble(i) - fSlope * pMatX->GetDouble(i); in lcl_GetSSresid()
2222 SCSIZE& N, ScMatrixRef& pMatX, ScMatrixRef& pMatY) in CheckMatrix() argument
2231 pMatY->GetDimensions(nCY, nRY); in CheckMatrix()
2235 if (!pMatY->IsValue(i)) in CheckMatrix()
2244 ScMatrixRef pNewY = pMatY->CloneIfConst(); in CheckMatrix()
2256 pMatY = pNewY; in CheckMatrix()
2387 ScMatrixRef pMatY; in CalulateRGPRKP() local
2388 pMatY = GetMatrix(); in CalulateRGPRKP()
2389 if (!pMatY) in CalulateRGPRKP()
2401 if ( !CheckMatrix(_bRKP,nCase,nCX,nCY,nRX,nRY,K,N,pMatX,pMatY) ) in CalulateRGPRKP()
2441 ScMatrixRef pNewY = pMatY->CloneIfConst(); in CalulateRGPRKP()
2448 pMatY = pNewY; in CalulateRGPRKP()
2450 fMeanY = lcl_GetMeanOverAll(pMatY, N); in CalulateRGPRKP()
2453 pMatY->PutDouble( ::rtl::math::approxSub(pMatY->GetDouble(i),fMeanY), i ); in CalulateRGPRKP()
2469 double fSumXY = lcl_GetSumProduct(pMatX,pMatY,N); in CalulateRGPRKP()
2491 double fSSresid = lcl_GetSSresid(pMatX,pMatY,fSlope,N); in CalulateRGPRKP()
2548 pMatZ = pMatY->Clone(); // Y is used in statistic, keep it in CalulateRGPRKP()
2550 pMatZ = pMatY; // Y can be overwritten in CalulateRGPRKP()
2615 pMatY->PutDouble(pMatY->GetDouble(row) - pMatZ->GetDouble(row), row); in CalulateRGPRKP()
2616 fSSresid = lcl_GetSumProduct(pMatY, pMatY, N); in CalulateRGPRKP()
2705 pMatZ = pMatY->Clone(); // Y is used in statistic, keep it in CalulateRGPRKP()
2707 pMatZ = pMatY; // Y can be overwritten in CalulateRGPRKP()
2774 pMatY->PutDouble(pMatY->GetDouble(col) - pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2775 fSSresid = lcl_GetSumProduct(pMatY, pMatY, N); in CalulateRGPRKP()
2920 ScMatrixRef pMatY; in CalculateTrendGrowth() local
2921 pMatY = GetMatrix(); in CalculateTrendGrowth()
2922 if (!pMatY) in CalculateTrendGrowth()
2934 if ( !CheckMatrix(_bGrowth,nCase,nCX,nCY,nRX,nRY,K,N,pMatX,pMatY) ) in CalculateTrendGrowth()
2994 ScMatrixRef pCopyY = pMatY->CloneIfConst(); in CalculateTrendGrowth()
3001 pMatY = pCopyY; in CalculateTrendGrowth()
3003 fMeanY = lcl_GetMeanOverAll(pMatY, N); in CalculateTrendGrowth()
3006 pMatY->PutDouble( ::rtl::math::approxSub(pMatY->GetDouble(i),fMeanY), i ); in CalculateTrendGrowth()
3022 double fSumXY = lcl_GetSumProduct(pMatX,pMatY,N); in CalculateTrendGrowth()
3086 lcl_ApplyHouseholderTransformation(pMatX, col, pMatY, N); in CalculateTrendGrowth()
3092 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3145 lcl_TApplyHouseholderTransformation(pMatX, row, pMatY, N); in CalculateTrendGrowth()
3151 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()