:orphan:
# MatGetLocalSize
For most matrix formats, excluding `MATELEMENTAL` and `MATSCALAPACK`, Returns the number of local rows and local columns of a matrix. For all matrices this is the local size of the left and right vectors as returned by `MatCreateVecs()`.
## Synopsis
```
#include "petscmat.h"
PetscErrorCode MatGetLocalSize(Mat mat, PetscInt *m, PetscInt *n)
```
Not Collective
## Input Parameter
- ***mat -*** the matrix
## Output Parameters
- ***m -*** the number of local rows, use `NULL` to not obtain this value
- ***n -*** the number of local columns, use `NULL` to not obtain this value
## See Also
[](ch_matrices), `Mat`, `MatSetSizes()`, `MatGetSize()`
## Level
beginner
## Location
src/mat/interface/matrix.c
## Examples
src/ksp/ksp/tutorials/ex10.c
src/ksp/ksp/tutorials/ex27.c
src/ksp/ksp/tutorials/ex72.c
src/ksp/ksp/tutorials/ex77.c
src/ksp/ksp/tutorials/ex77f.F90
src/snes/tutorials/ex12.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)