78 fU.ResizeTo(nrows,nrows);
86 const Int_t nrows = row_upb-row_lwb+1;
91 fU.ResizeTo(nrows,nrows);
111 const Int_t nRows =
a.GetNrows();
113 fU.ResizeTo(nRows,nRows);
114 memcpy(
fU.GetMatrixArray(),
a.GetMatrixArray(),nRows*nRows*
sizeof(
Double_t));
136 Error(
"Decompose()",
"Matrix has not been set");
181 if (absakk >= alpha*colmax) {
198 if (absakk >= alpha*colmax*(colmax/rowmax)) {
201 }
else if(
TMath::Abs(diag(imax)) >= alpha*rowmax) {
211 const Int_t kk = k-kstep+1;
216 for (
Int_t irow = 0; irow < kp; irow++) {
224 c_kk = pU+(kp+1)*
n+kk;
226 for (
Int_t icol = 0; icol < kk-kp-1; icol++) {
239 pU[(k-1)*
n+k] = pU[kp*
n+k];
246 if (kstep == 1 && k > 0) {
272 const Double_t d22 = pU_k1[k-1]/d12;
277 for (
Int_t j = k-2; j >= 0; j--) {
279 const Double_t wkm1 = d12*(d11*pU_j[k-1]-pU_j[k]);
280 const Double_t wk = d12*(d22*pU_j[k]-pU_j[k-1]);
283 pU_i[j] -= (pU_i[k]*wk+pU_i[k-1]*wkm1);
296 fIpiv[k-1] = -(kp+1);
330 const Int_t nRows =
a.GetNrows();
332 fU.ResizeTo(nRows,nRows);
333 memcpy(
fU.GetMatrixArray(),
a.GetMatrixArray(),nRows*nRows*
sizeof(
Double_t));
343 Error(
"Solve()",
"Matrix is singular");
348 Error(
"Solve()",
"Decomposition failed");
353 if (
fU.GetNrows() !=
b.GetNrows() ||
fU.GetRowLwb() !=
b.GetLwb()) {
354 Error(
"Solve(TVectorD &",
"vector and matrix incompatible");
385 pb[
i] -= pU[
i*
n+k]*pb[k];
404 for (
i = 0;
i < k-1;
i++)
405 pb[
i] -= pU[
i*
n+k]*pb[k];
406 for (
i = 0;
i < k-1;
i++)
407 pb[
i] -= pU[
i*
n+k-1]*pb[k-1];
412 const Double_t ukm1 = pU_k1[k-1]/ukm1k;
415 const Double_t bkm1 = pb[k-1]/ukm1k;
417 pb[k-1] = (uk*bkm1-bk)/denom;
418 pb[k] = (ukm1*bk-bkm1)/denom;
436 pb[k] -= pU[
i*
n+k]*pb[
i];
451 for (
i = 0;
i < k;
i++)
452 pb[k] -= pU[
i*
n+k]*pb[
i];
453 for (
i = 0;
i < k;
i++)
454 pb[k+1] -= pU[
i*
n+k+1]*pb[
i];
478 Error(
"Solve()",
"Matrix is singular");
483 Error(
"Solve()",
"Decomposition failed");
488 if (
fU.GetNrows() !=
b->GetNrows() ||
fU.GetRowLwb() !=
b->GetRowLwb()) {
489 Error(
"Solve(TMatrixDColumn &",
"vector and matrix incompatible");
515 pcb[k*inc] = pcb[kp*inc];
522 pcb[
i*inc] -= pU[
i*
n+k]*pcb[k*inc];
525 pcb[k*inc] /= diag(k);
533 const Double_t tmp = pcb[(k-1)*inc];
534 pcb[(k-1)*inc] = pcb[kp*inc];
541 for (
i = 0;
i < k-1;
i++)
542 pcb[
i*inc] -= pU[
i*
n+k]*pcb[k*inc];
543 for (
i = 0;
i < k-1;
i++)
544 pcb[
i*inc] -= pU[
i*
n+k-1]*pcb[(k-1)*inc];
549 const Double_t ukm1 = pU_k1[k-1]/ukm1k;
552 const Double_t bkm1 = pcb[(k-1)*inc]/ukm1k;
553 const Double_t bk = pcb[k*inc]/ukm1k;
554 pcb[(k-1)*inc] = (uk*bkm1-bk)/denom;
555 pcb[k*inc] = (ukm1*bk-bkm1)/denom;
573 pcb[k*inc] -= pU[
i*
n+k]*pcb[
i*inc];
579 pcb[k*inc] = pcb[kp*inc];
588 for (
i = 0;
i < k;
i++)
589 pcb[k*inc] -= pU[
i*
n+k]*pcb[
i*inc];
590 for (
i = 0;
i < k;
i++)
591 pcb[(k+1)*inc] -= pU[
i*
n+k+1]*pcb[
i*inc];
597 pcb[k*inc] = pcb[kp*inc];
613 Error(
"Invert(TMatrixDSym &",
"Input matrix has wrong shape");
619 const Int_t colLwb =
inv.GetColLwb();
620 const Int_t colUpb =
inv.GetColUpb();
622 for (
Int_t icol = colLwb; icol <= colUpb && status; icol++) {
653 printf(
"[%d] = %d\n",
i,
fIpiv[
i]);
662 if (
this != &source) {
664 fU.ResizeTo(source.
fU);
TMatrixTBase< Double_t > TMatrixDBase
TMatrixTSym< Double_t > TMatrixDSym
TMatrixTSub< Double_t > TMatrixDSub
TMatrixTColumn_const< Double_t > TMatrixDColumn_const
TMatrixTDiag< Double_t > TMatrixDDiag
TMatrixTRow_const< Double_t > TMatrixDRow_const
TMatrixTDiag_const< Double_t > TMatrixDDiag_const
TMatrixTColumn< Double_t > TMatrixDColumn
TVectorT< Double_t > TVectorD
The Bunch-Kaufman diagonal pivoting method decomposes a real symmetric matrix A using.
Int_t GetNrows() const override
TDecompBK & operator=(const TDecompBK &source)
Assignment operator.
TDecompBK()
Default constructor.
Bool_t Decompose() override
Matrix A is decomposed in components U and D so that A = U*D*U^T If the decomposition succeeds,...
Bool_t Solve(TVectorD &b) override
Solve Ax=b assuming the BK form of A is stored in fU . Solution returned in b.
virtual void SetMatrix(const TMatrixDSym &a)
Set the matrix to be decomposed, decomposition status is reset.
void Print(Option_t *opt="") const override
Print the class members.
TDecompBase & operator=(const TDecompBase &source)
Assignment operator.
TDecompBase()
Default constructor.
void Print(Option_t *opt="") const override
Print class members.
const TMatrixTBase< Element > * GetMatrix() const
void Rank1Update(const TVectorT< Element > &vec, Element alpha=1.0)
Perform a rank 1 operation on the matrix: A += alpha * v * v^T.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
TVectorT< Element > & Abs()
Take an absolute value of a vector, i.e. apply Abs() to each element.
Element * GetMatrixArray()
Short_t Max(Short_t a, Short_t b)
Returns the largest of a and b.
Long64_t LocMax(Long64_t n, const T *a)
Returns index of array with the maximum element.
Double_t Sqrt(Double_t x)
Returns the square root of x.
Short_t Abs(Short_t d)
Returns the absolute value of parameter Short_t d.
void inv(rsa_NUMBER *, rsa_NUMBER *, rsa_NUMBER *)