:orphan:
# MatGetGhosts
Get the global indices of all ghost nodes defined by the sparse matrix
## Synopsis
```
#include "petscmat.h"
PetscErrorCode MatGetGhosts(Mat mat, PetscInt *nghosts, const PetscInt *ghosts[])
```
Collective
## Input Parameter
- ***mat -*** the matrix
## Output Parameters
- ***nghosts -*** number of ghosts (for `MATBAIJ` and `MATSBAIJ` matrices there is one ghost for each block)
- ***ghosts -*** the global indices of the ghost points
## Note
`nghosts` and `ghosts` are suitable to pass into `VecCreateGhost()`
## See Also
[](ch_matrices), `Mat`, `VecCreateGhost()`
## Level
advanced
## Location
src/mat/interface/matrix.c
## Implementations
MatGetGhosts_MPIAIJ in src/mat/impls/aij/mpi/mpiaij.c
MatGetGhosts_MPIBAIJ in src/mat/impls/baij/mpi/mpibaij.c
MatGetGhosts_MPISELL in src/mat/impls/sell/mpi/mpisell.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)