MatRARt#

Creates the matrix product \(C = R * A * R^T\)

Synopsis#

#include "petscmat.h" 
PetscErrorCode MatRARt(Mat A, Mat R, MatReuse scall, PetscReal fill, Mat *C)

Neighbor-wise Collective

Input Parameters#

Output Parameter#

  • C - the product matrix

Notes#

C will be created and must be destroyed by the user with MatDestroy().

This is a convenience routine that wraps the use of the MatProductCreate() with a MatProductType of MATPRODUCT_RARt functionality into a single function call. For more involved matrix-matrix operations see MatProductCreate().

This routine is currently only implemented for pairs of MATAIJ matrices and classes which inherit from MATAIJ. Due to PETSc sparse matrix block row distribution among processes, the parallel MatRARt() is implemented computing the explicit transpose of R, which can be very expensive. We recommend using MatPtAP() when possible.

The deprecated PETSC_DEFAULT in fill also means use the current value

See Also#

Matrices, Mat, MatProductCreate(), MatMatMult(), MatPtAP()

Level#

intermediate

Location#

src/mat/interface/matrix.c


Index of all Mat routines
Table of Contents for all manual pages
Index of all manual pages