本文整理汇总了C++中AbstractLinAlgPack::Vp_StPtMtV方法的典型用法代码示例。如果您正苦于以下问题:C++ AbstractLinAlgPack::Vp_StPtMtV方法的具体用法?C++ AbstractLinAlgPack::Vp_StPtMtV怎么用?C++ AbstractLinAlgPack::Vp_StPtMtV使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AbstractLinAlgPack
的用法示例。
在下文中一共展示了AbstractLinAlgPack::Vp_StPtMtV方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Vp_StPtMtV
void LinAlgOpPack::Vp_StPtMtV(
DVectorSlice* y, value_type a
,const GenPermMatrixSlice& P, BLAS_Cpp::Transp P_trans
,const MatrixOp& M, BLAS_Cpp::Transp M_trans
,const DVectorSlice& x, value_type b
)
{
namespace mmp = MemMngPack;
using BLAS_Cpp::no_trans;
using AbstractLinAlgPack::VectorMutableDense;
using AbstractLinAlgPack::VectorDenseMutableEncap;
using AbstractLinAlgPack::Vp_StPtMtV;
VectorSpace::space_ptr_t
ay_space = ( M_trans == no_trans ? M.space_cols() : M.space_rows() ).space(P,P_trans);
VectorSpace::vec_mut_ptr_t
ay = ( ay_space.get()
? ay_space->create_member()
: Teuchos::rcp_implicit_cast<VectorMutable>(
Teuchos::rcp(new VectorMutableDense(BLAS_Cpp::rows(P.rows(),P.cols(),P_trans)))
) ),
ax = ( M_trans == no_trans ? M.space_rows() : M.space_cols() ).create_member();
(VectorDenseMutableEncap(*ay))() = *y;
(VectorDenseMutableEncap(*ax))() = x;
Vp_StPtMtV( ay.get(), a, P, P_trans, M, M_trans, *ax, b );
*y = VectorDenseMutableEncap(*ay)();
}