Lines Matching refs:col

1852         for (SCSIZE col = 0; col < l; col++)  in lcl_MFastMult()  local
1856 sum += pA->GetDouble(k,row) * pB->GetDouble(col,k); in lcl_MFastMult()
1857 pR->PutDouble(sum, col, row); in lcl_MFastMult()
1887 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnEuclideanNorm() local
1888 fNorm += (pMatA->GetDouble(col,nR)) * (pMatA->GetDouble(col,nR)); in lcl_TGetColumnEuclideanNorm()
1909 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnMaximumNorm() local
1910 if (fNorm < fabs(pMatA->GetDouble(col,nR))) in lcl_TGetColumnMaximumNorm()
1911 fNorm = fabs(pMatA->GetDouble(col,nR)); in lcl_TGetColumnMaximumNorm()
1933 for (SCSIZE col=nC; col<nN; col++) in lcl_TGetColumnSumProduct() local
1934 fResult += pMatA->GetDouble(col,nRa) * pMatB->GetDouble(col,nRb); in lcl_TGetColumnSumProduct()
1966 for (SCSIZE col = 0; col <nK; col++) in lcl_CalculateQRdecomposition() local
1969 fScale = lcl_GetColumnMaximumNorm(pMatA, col, col, nN); in lcl_CalculateQRdecomposition()
1974 for (SCSIZE row = col; row <nN; row++) in lcl_CalculateQRdecomposition()
1975 pMatA->PutDouble( pMatA->GetDouble(col,row)/fScale, col, row); in lcl_CalculateQRdecomposition()
1977 fEuclid = lcl_GetColumnEuclideanNorm(pMatA, col, col, nN); in lcl_CalculateQRdecomposition()
1978 fFactor = 1.0/fEuclid/(fEuclid + fabs(pMatA->GetDouble(col,col))); in lcl_CalculateQRdecomposition()
1979 fSignum = lcl_GetSign(pMatA->GetDouble(col,col)); in lcl_CalculateQRdecomposition()
1980 pMatA->PutDouble( pMatA->GetDouble(col,col) + fSignum*fEuclid, col,col); in lcl_CalculateQRdecomposition()
1981 pVecR[col] = -fSignum * fScale * fEuclid; in lcl_CalculateQRdecomposition()
1984 for (SCSIZE c=col+1; c<nK; c++) in lcl_CalculateQRdecomposition()
1986 fSum =lcl_GetColumnSumProduct(pMatA, col, pMatA, c, col, nN); in lcl_CalculateQRdecomposition()
1987 for (SCSIZE row = col; row <nN; row++) in lcl_CalculateQRdecomposition()
1989 - fSum * fFactor * pMatA->GetDouble(col,row), c, row); in lcl_CalculateQRdecomposition()
2013 for (SCSIZE col = row; col <nN; col++) in lcl_TCalculateQRdecomposition() local
2014 pMatA->PutDouble( pMatA->GetDouble(col,row)/fScale, col, row); in lcl_TCalculateQRdecomposition()
2026 for (SCSIZE col = row; col <nN; col++) in lcl_TCalculateQRdecomposition() local
2027 pMatA->PutDouble( pMatA->GetDouble(col,r) in lcl_TCalculateQRdecomposition()
2028 - fSum * fFactor * pMatA->GetDouble(col,row), col, r); in lcl_TCalculateQRdecomposition()
2061 for (SCSIZE col = nR; col < nN; col++) in lcl_TApplyHouseholderTransformation() local
2063 pMatY->GetDouble(col) - fFactor * pMatA->GetDouble(col,nR), col); in lcl_TApplyHouseholderTransformation()
2084 for (SCSIZE col = rowp1; col<nK ; col++) in lcl_SolveWithUpperRightTriangle() local
2086 fSum -= pMatA->GetDouble(row,col) * pMatS->GetDouble(col); in lcl_SolveWithUpperRightTriangle()
2088 fSum -= pMatA->GetDouble(col,row) * pMatS->GetDouble(col); in lcl_SolveWithUpperRightTriangle()
2108 for (SCSIZE col=0; col < row; col++) in lcl_SolveWithLowerLeftTriangle() local
2111 fSum -= pMatA->GetDouble(col,row) * pMatT->GetDouble(col); in lcl_SolveWithLowerLeftTriangle()
2113 fSum -= pMatA->GetDouble(row,col) * pMatT->GetDouble(col); in lcl_SolveWithLowerLeftTriangle()
2134 for (SCSIZE col = row+1; col < nK; col++) in lcl_ApplyUpperRightTriangle() local
2136 fSum += pMatA->GetDouble(row,col) * pMatB->GetDouble(col); in lcl_ApplyUpperRightTriangle()
2138 fSum += pMatA->GetDouble(col,row) * pMatB->GetDouble(col); in lcl_ApplyUpperRightTriangle()
2578 for (SCSIZE col = 0; col < K; col++) in CalulateRGPRKP() local
2580 lcl_ApplyHouseholderTransformation(pMatX, col, pMatZ, N); in CalulateRGPRKP()
2584 for (SCSIZE col = 0; col < K ; col++) in CalulateRGPRKP() local
2586 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2662 for (SCSIZE col = 0; col < K; col++) in CalulateRGPRKP() local
2666 pMatZ->PutDouble(1.0, col); in CalulateRGPRKP()
2672 fSigmaSlope = fRMSE * sqrt(pMatZ->GetDouble(col)); in CalulateRGPRKP()
2673 pResMat->PutDouble(fSigmaSlope, K-1-col, 1); in CalulateRGPRKP()
2678 fSigmaIntercept += fPart * pMeans->GetDouble(col); in CalulateRGPRKP()
2743 for (SCSIZE col = 0; col < K ; col++) in CalulateRGPRKP() local
2745 pSlopes->PutDouble( pMatZ->GetDouble(col), col); in CalulateRGPRKP()
2773 for (SCSIZE col = 0; col < N; col++) in CalulateRGPRKP() local
2774 pMatY->PutDouble(pMatY->GetDouble(col) - pMatZ->GetDouble(col), col); in CalulateRGPRKP()
3084 for (SCSIZE col = 0; col < K; col++) in CalculateTrendGrowth() local
3086 lcl_ApplyHouseholderTransformation(pMatX, col, pMatY, N); in CalculateTrendGrowth()
3090 for (SCSIZE col = 0; col < K ; col++) in CalculateTrendGrowth() local
3092 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3149 for (SCSIZE col = 0; col < K ; col++) in CalculateTrendGrowth() local
3151 pSlopes->PutDouble( pMatY->GetDouble(col), col); in CalculateTrendGrowth()
3160 for (SCSIZE col = 0; col < nCXN; col++) in CalculateTrendGrowth() local
3161 pResMat->PutDouble(pResMat->GetDouble(col)+fIntercept, col); in CalculateTrendGrowth()