:orphan: # MatMultHermitianTransposeAdd Computes v3 = v2 + A^H * v1. ## Synopsis ``` #include "petscmat.h" PetscErrorCode MatMultHermitianTransposeAdd(Mat mat, Vec v1, Vec v2, Vec v3) ``` Neighbor-wise Collective ## Input Parameters - ***mat -*** the matrix - ***v1 -*** the vector to be multiplied by the Hermitian transpose - ***v2 -*** the vector to be added to the result ## Output Parameter - ***v3 -*** the result ## Note The vectors `v1` and `v3` cannot be the same. I.e., one cannot call `MatMultHermitianTransposeAdd`(A,v1,v2,v1). ## See Also [](ch_matrices), `Mat`, `MatMultHermitianTranspose()`, `MatMultTranspose()`, `MatMultAdd()`, `MatMult()` ## Level beginner ## Location src/mat/interface/matrix.c ## Implementations MatMultHermitianTransposeAdd_SeqAIJKokkos in src/mat/impls/aij/seq/kokkos/aijkok.kokkos.cxx
MatMultHermitianTransposeAdd_SeqAIJCUSPARSE in src/mat/impls/aij/seq/seqcusparse/aijcusparse.cu
MatMultHermitianTransposeAdd_SeqAIJHIPSPARSE in src/mat/impls/aij/seq/seqhipsparse/aijhipsparse.hip.c
MatMultHermitianTransposeAdd_SeqBAIJ in src/mat/impls/baij/seq/baij2.c
MatMultHermitianTransposeAdd_Normal in src/mat/impls/normal/normmh.c
MatMultHermitianTransposeAdd_HT in src/mat/impls/transpose/htransm.c
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/mat/interface/matrix.c) [Index of all Mat routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)