MatMultHermitianTranspose#
Computes matrix Hermitian transpose times a vector.
Synopsis#
#include "petscmat.h"
PetscErrorCode MatMultHermitianTranspose(Mat mat, Vec x, Vec y)
Neighbor-wise Collective
Input Parameters#
mat - the matrix
x - the vector to be multiplied
Output Parameter#
y - the result
Notes#
The vectors x
and y
cannot be the same. I.e., one cannot
call MatMultHermitianTranspose
(A,y,y).
Also called the conjugate transpose, complex conjugate transpose, or adjoint.
For real numbers MatMultTranspose()
and MatMultHermitianTranspose()
are identical.
See Also#
Matrices, Mat
, MatMult()
, MatMultAdd()
, MatMultHermitianTransposeAdd()
, MatMultTranspose()
Level#
beginner
Location#
Examples#
Implementations#
MatMultHermitianTranspose_SeqAIJKokkos in src/mat/impls/aij/seq/kokkos/aijkok.kokkos.cxx
MatMultHermitianTranspose_SeqAIJCUSPARSE in src/mat/impls/aij/seq/seqcusparse/aijcusparse.cu
MatMultHermitianTranspose_SeqAIJHIPSPARSE in src/mat/impls/aij/seq/seqhipsparse/aijhipsparse.hip.c
MatMultHermitianTranspose_SeqBAIJ in src/mat/impls/baij/seq/baij2.c
MatMultHermitianTranspose_Normal in src/mat/impls/normal/normmh.c
MatMultHermitianTranspose_HT in src/mat/impls/transpose/htransm.c
Index of all Mat routines
Table of Contents for all manual pages
Index of all manual pages