本文整理汇总了C++中MatrixT::setRef方法的典型用法代码示例。如果您正苦于以下问题:C++ MatrixT::setRef方法的具体用法?C++ MatrixT::setRef怎么用?C++ MatrixT::setRef使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MatrixT
的用法示例。
在下文中一共展示了MatrixT::setRef方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: HouseholderTransform
bool QRDecomposition<T>::set(const MatrixT& A)
{
QR.copy(A);
tau.resize(Min(A.m,A.n));
for (int i=0;i<Min(A.m,A.n);i++) {
/* Compute the Householder transformation to reduce the j-th
column of the matrix to a multiple of the j-th unit vector */
VectorT c_full,c;
QR.getColRef(i,c_full);
c.setRef(c_full,i);
T tau_i = HouseholderTransform (c);
tau(i)=tau_i;
/* Apply the transformation to the remaining columns and
update the norms */
if (i+1 < A.n) {
MatrixT m;
m.setRef(QR,i,i+1);
HouseholderPreMultiply (tau_i, c, m);
}
}
return true;
}
示例2: Assert
void QRDecomposition<T>::getQ(MatrixT& Q) const
{
Assert(tau.n == Min(QR.m,QR.n));
Q.resize(QR.m,QR.m);
int i;
Q.setIdentity();
for (i=Min(QR.m,QR.n);i>0 && i--;) {
VectorT c,h;
QR.getColRef(i,c);
h.setRef(c,i);
MatrixT m;
m.setRef(Q,i,i);
HouseholderPreMultiply(tau(i),h,m);
}
}