本文整理汇总了C++中_zhematrix::destroy方法的典型用法代码示例。如果您正苦于以下问题:C++ _zhematrix::destroy方法的具体用法?C++ _zhematrix::destroy怎么用?C++ _zhematrix::destroy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类_zhematrix
的用法示例。
在下文中一共展示了_zhematrix::destroy方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: newmat
/*! _zhematrix*_zhematrix operator */
inline _zgematrix operator*(const _zhematrix& matA, const _zhematrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator*(const _zhematrix&, const _zhematrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.N){
std::cerr << "[ERROR] operator*(_zhematrix&, zhematrix&)" << std::endl
<< "These two matrises can not make a product." << std::endl
<< "Your input was (" << matA.N << "x" << matA.N << ") * ("
<< matB.N << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
matB.complete();
zgematrix newmat( matA.N, matB.N );
zhemm_( 'L', 'L', matA.N, matB.N, std::complex<double>(1.0,0.0),
matA.Array, matA.N, matB.Array, matB.N,
std::complex<double>(0.0,0.0), newmat.array, newmat.m );
matA.destroy();
matB.destroy();
return _(newmat);
}
示例2: newmat
/*! _zgematrix*zgbmatrix operator */
inline _zgematrix operator*(const _zhematrix& matA, const zgbmatrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator*(const _zhematrix&, const zgbmatrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.M){
std::cerr << "[ERROR] operator*(_zhematrix&, zgbmatrix&)" << std::endl
<< "These two matrises can not make a product." << std::endl
<< "Your input was (" << matA.N << "x" << matA.N << ") * ("
<< matB.M << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat( matA.N, matB.N );
newmat.zero();
long i, j, k;
for(i=0; i<newmat.m; i++){
for(j=0; j<newmat.n; j++){
for(k=max(0,j-matB.KU); k<min(matB.M,j+matB.KL+1); k++){
newmat(i,j)+=matA(i,k)*matB(k,j);
}
}
}
matA.destroy();
return _(newmat);
}
示例3: newvec
/*! _zhematrix*zcovector operator */
inline _zcovector operator*(const _zhematrix& mat, const zcovector& vec)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator*(const _zhematrix&, const zcovector&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(mat.N!=vec.L){
std::cerr << "[ERROR] operator*(const _zhematrix&, const zcovector&)"
<< std::endl
<< "These matrix and vector can not make a product." << std::endl
<< "Your input was (" << mat.N << "x" << mat.N << ") * ("
<< vec.L << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zcovector newvec(mat.N);
zhemv_( 'L', mat.N, std::complex<double>(1.0,0.0), mat.Array, mat.N,
vec.Array, 1, std::complex<double>(0.0,0.0), newvec.array, 1 );
mat.destroy();
return _(newvec);
}
示例4: was
/*! _zhematrix-_zhematrix operator */
inline _zhematrix operator-(const _zhematrix& matA, const _zhematrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator-(const _zhematrix&, const _zhematrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.N){
std::cerr << "[ERROR] operator-(_zhematrix&, _zhematrix&)" << std::endl
<< "These two matrises can not make a subtraction." << std::endl
<< "Your input was (" << matA.N << "x" << matA.N << ") - ("
<< matB.N << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
for(long i=0; i<matA.N; i++){
for(long j=0; j<matA.N; j++){
matA.Array[i+matA.N*j]-=matB.Array[i+matA.N*j];
}
}
matB.destroy();
return matA;
}
示例5: newmat
/*! _zgbmatrix*_zhematrix operator */
inline _zgematrix operator*(const _zgbmatrix& matA, const _zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.n!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a product." << std::endl
<< "Your input was (" << matA.m << "x" << matA.n << ") * (" << matB.n << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat( matA.m, matB.n );
newmat.zero();
for(long i=0; i<newmat.m; i++){
for(long j=0; j<newmat.n; j++){
for(long k=std::max(long(0),i-matA.kl); k<std::min(matA.n,i+matA.ku+1); k++){
newmat(i,j)+=matA(i,k)*matB(k,j);
}
}
}
matA.destroy();
matB.destroy();
return _(newmat);
}
示例6: newmat
/*! _zhematrix*_zhematrix operator */
inline _zgematrix operator*(const _zhematrix& matA, const _zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.n!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a product." << std::endl
<< "Your input was (" << matA.n << "x" << matA.n << ") * (" << matB.n << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
matB.complete();
zgematrix newmat( matA.n, matB.n );
zhemm_( 'l', 'l', matA.n, matB.n, comple(1.0,0.0),
matA.array, matA.n, matB.array, matB.n,
comple(0.0,0.0), newmat.array, newmat.m );
matA.destroy();
matB.destroy();
return _(newmat);
}
示例7: newvec
/*! _zrovector*_zhematrix operator */
inline _zrovector operator*(const _zrovector& vec, const _zhematrix& mat)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(vec.l!=mat.n){
ERROR_REPORT;
std::cerr << "These vector and matrix can not make a product." << std::endl
<< "Your input was (" << vec.l << ") * (" << mat.n << "x" << mat.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zrovector newvec(mat.n);
zhemv_( 'l', mat.n, comple(1.0,0.0), mat.array, mat.n,
vec.array, 1, comple(0.0,0.0), newvec.array, 1 );
vec.destroy();
mat.destroy();
return _(newvec);
}
示例8: newmat
/*! zgematrix-_zhematrix operator */
inline _zgematrix operator-(const zgematrix& matA, const _zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.n!=matB.n || matA.m!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a subtraction." << std::endl
<< "Your input was (" << matA.m << "x" << matA.n << ") - (" << matB.n << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat(matA);
for(long i=0; i<matA.m; i++){ for(long j=0; j<matA.n; j++){
newmat(i,j) -=matB(i,j);
}}
matB.destroy();
return _(newmat);
}
示例9: newmat
/*! zgsmatrix+_zhematrix operator */
inline _zgematrix operator+(const zgsmatrix& matA, const _zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.m!=matB.n || matA.n!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a summation." << std::endl
<< "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.n << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat( matB.to_zgematrix() );
for(std::vector<zcomponent>::const_iterator it=matA.data.begin(); it!=matA.data.end(); it++){
newmat(it->i,it->j) += it->v;
}
matB.destroy();
return _(newmat);
}
示例10: newmat
/*! _zhematrix-zhematrix operator */
inline _zgematrix operator-(const _zhematrix& matA, const zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.n!=matB.m || matA.n!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a subtraction." << std::endl
<< "Your input was (" << matA.n << "x" << matA.n << ") - (" << matB.m << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat(matA);
for(long c=0; c<matB.vol; c++){
newmat(matB.indx[c],matB.jndx[c]) -= matB.array[c];
}
matA.destroy();
return _(newmat);
}
示例11: was
/*! _zhematrix-_zhematrix operator */
inline _zhematrix operator-(const _zhematrix& matA, const _zhematrix& matB)
{VERBOSE_REPORT;
#ifdef CPPL_DEBUG
if(matA.n!=matB.n){
ERROR_REPORT;
std::cerr << "These two matrises can not make a subtraction." << std::endl
<< "Your input was (" << matA.n << "x" << matA.n << ") - (" << matB.n << "x" << matB.n << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
for(long i=0; i<matA.n; i++){
for(long j=0; j<matA.n; j++){
matA.array[i+matA.n*j]-=matB.array[i+matA.n*j];
}
}
matB.destroy();
return matA;
}