Lines Matching refs:col

1853         for (SCSIZE col = 0; col < l; col++)  in lcl_MFastMult()  local
1857 sum += pA->GetDouble(k,row) * pB->GetDouble(col,k); in lcl_MFastMult()
1858 pR->PutDouble(sum, col, row); in lcl_MFastMult()
1888 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnEuclideanNorm() local
1889 fNorm += (pMatA->GetDouble(col,nR)) * (pMatA->GetDouble(col,nR)); in lcl_TGetColumnEuclideanNorm()
1910 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnMaximumNorm() local
1911 if (fNorm < fabs(pMatA->GetDouble(col,nR))) in lcl_TGetColumnMaximumNorm()
1912 fNorm = fabs(pMatA->GetDouble(col,nR)); in lcl_TGetColumnMaximumNorm()
1934 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnSumProduct() local
1935 fResult += pMatA->GetDouble(col,nRa) * pMatB->GetDouble(col,nRb); in lcl_TGetColumnSumProduct()
1967 for (SCSIZE col = 0; col <nK; col++) in lcl_CalculateQRdecomposition() local
1970 fScale = lcl_GetColumnMaximumNorm(pMatA, col, col, nN); in lcl_CalculateQRdecomposition()
1975 for (SCSIZE row = col; row <nN; row++) in lcl_CalculateQRdecomposition()
1976 pMatA->PutDouble( pMatA->GetDouble(col,row)/fScale, col, row); in lcl_CalculateQRdecomposition()
1978 fEuclid = lcl_GetColumnEuclideanNorm(pMatA, col, col, nN); in lcl_CalculateQRdecomposition()
1979 fFactor = 1.0/fEuclid/(fEuclid + fabs(pMatA->GetDouble(col,col))); in lcl_CalculateQRdecomposition()
1980 fSignum = lcl_GetSign(pMatA->GetDouble(col,col)); in lcl_CalculateQRdecomposition()
1981 pMatA->PutDouble( pMatA->GetDouble(col,col) + fSignum*fEuclid, col,col); in lcl_CalculateQRdecomposition()
1982 pVecR[col] = -fSignum * fScale * fEuclid; in lcl_CalculateQRdecomposition()
1985 for (SCSIZE c=col+1; c<nK; c++) in lcl_CalculateQRdecomposition()
1987 fSum =lcl_GetColumnSumProduct(pMatA, col, pMatA, c, col, nN); in lcl_CalculateQRdecomposition()
1988 for (SCSIZE row = col; row <nN; row++) in lcl_CalculateQRdecomposition()
1990 - fSum * fFactor * pMatA->GetDouble(col,row), c, row); in lcl_CalculateQRdecomposition()
2014 for (SCSIZE col = row; col <nN; col++) in lcl_TCalculateQRdecomposition() local
2015 pMatA->PutDouble( pMatA->GetDouble(col,row)/fScale, col, row); in lcl_TCalculateQRdecomposition()
2027 for (SCSIZE col = row; col <nN; col++) in lcl_TCalculateQRdecomposition() local
2028 pMatA->PutDouble( pMatA->GetDouble(col,r) in lcl_TCalculateQRdecomposition()
2029 - fSum * fFactor * pMatA->GetDouble(col,row), col, r); in lcl_TCalculateQRdecomposition()
2062 for (SCSIZE col = nR; col < nN; col++) in lcl_TApplyHouseholderTransformation() local
2064 pMatY->GetDouble(col) - fFactor * pMatA->GetDouble(col,nR), col); in lcl_TApplyHouseholderTransformation()
2085 for (SCSIZE col = rowp1; col<nK ; col++) in lcl_SolveWithUpperRightTriangle() local
2087 fSum -= pMatA->GetDouble(row,col) * pMatS->GetDouble(col); in lcl_SolveWithUpperRightTriangle()
2089 fSum -= pMatA->GetDouble(col,row) * pMatS->GetDouble(col); in lcl_SolveWithUpperRightTriangle()
2109 for (SCSIZE col=0; col < row; col++) in lcl_SolveWithLowerLeftTriangle() local
2112 fSum -= pMatA->GetDouble(col,row) * pMatT->GetDouble(col); in lcl_SolveWithLowerLeftTriangle()
2114 fSum -= pMatA->GetDouble(row,col) * pMatT->GetDouble(col); in lcl_SolveWithLowerLeftTriangle()
2135 for (SCSIZE col = row+1; col < nK; col++) in lcl_ApplyUpperRightTriangle() local
2137 fSum += pMatA->GetDouble(row,col) * pMatB->GetDouble(col); in lcl_ApplyUpperRightTriangle()
2139 fSum += pMatA->GetDouble(col,row) * pMatB->GetDouble(col); in lcl_ApplyUpperRightTriangle()
2579 for (SCSIZE col = 0; col < K; col++) in CalulateRGPRKP() local
2581 lcl_ApplyHouseholderTransformation(pMatX, col, pMatZ, N); in CalulateRGPRKP()
2585 for (SCSIZE col = 0; col < K ; col++) in CalulateRGPRKP() local
2587 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2663 for (SCSIZE col = 0; col < K; col++) in CalulateRGPRKP() local
2667 pMatZ->PutDouble(1.0, col); in CalulateRGPRKP()
2673 fSigmaSlope = fRMSE * sqrt(pMatZ->GetDouble(col)); in CalulateRGPRKP()
2674 pResMat->PutDouble(fSigmaSlope, K-1-col, 1); in CalulateRGPRKP()
2679 fSigmaIntercept += fPart * pMeans->GetDouble(col); in CalulateRGPRKP()
2744 for (SCSIZE col = 0; col < K ; col++) in CalulateRGPRKP() local
2746 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2774 for (SCSIZE col = 0; col < N; col++) in CalulateRGPRKP() local
2775 pMatY->PutDouble(pMatY->GetDouble(col) - pMatZ->GetDouble(col), col); in CalulateRGPRKP()
3085 for (SCSIZE col = 0; col < K; col++) in CalculateTrendGrowth() local
3087 lcl_ApplyHouseholderTransformation(pMatX, col, pMatY, N); in CalculateTrendGrowth()
3091 for (SCSIZE col = 0; col < K ; col++) in CalculateTrendGrowth() local
3093 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3150 for (SCSIZE col = 0; col < K ; col++) in CalculateTrendGrowth() local
3152 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3161 for (SCSIZE col = 0; col < nCXN; col++) in CalculateTrendGrowth() local
3162 pResMat->PutDouble(pResMat->GetDouble(col)+fIntercept, col); in CalculateTrendGrowth()