コード例 #1
0
ファイル: BLASInterface.cpp プロジェクト: HargisJ/KrisLibrary
void BLASInterface::MulTranspose(const dMatrix& A,const dVector& x,dVector& out)
{
  out.resize(A.n);
  out.setZero();
  MaddTranspose(A,x,out);
}
コード例 #2
0
ファイル: BLASInterface.cpp プロジェクト: HargisJ/KrisLibrary
void BLASInterface::Mul(const dMatrix& A,const dVector& x,dVector& out)
{
  out.resize(A.m);
  out.setZero();
  Madd(A,x,out);
}