:orphan:
# MatZeroRowsColumnsLocalIS
Zeros all entries (except possibly the main diagonal) of a set of rows and columns of a matrix; using local numbering of rows. 
## Synopsis
```
#include "petscmat.h" 
PetscErrorCode MatZeroRowsColumnsLocalIS(Mat mat, IS is, PetscScalar diag, Vec x, Vec b)
```
Collective


## Input Parameters

- ***mat -*** the matrix
- ***is -*** index set of rows to remove
- ***diag -*** value put in all diagonals of eliminated rows
- ***x -*** optional vector of solutions for zeroed rows (other entries in vector are not used)
- ***b -*** optional vector of right hand side, that will be adjusted by provided solution





## Notes
Before calling `MatZeroRowsColumnsLocalIS()`, the user must first set the
local-to-global mapping by calling `MatSetLocalToGlobalMapping()`, this is often already set for matrices obtained with `DMCreateMatrix()`.

See `MatZeroRowsColumns()` for details on how this routine operates.


## See Also
 [](ch_matrices), `Mat`, `MatZeroRowsIS()`, `MatZeroRowsColumns()`, `MatZeroRowsLocalIS()`, `MatZeroRowsStencil()`, `MatZeroEntries()`, `MatZeroRowsLocal()`, `MatSetOption()`,
`MatZeroRowsColumnsLocal()`, `MatZeroRows()`, `MatZeroRowsColumnsIS()`, `MatZeroRowsColumnsStencil()`

## Level
intermediate

## Location
<A HREF="PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/mat/interface/matrix.c.html#MatZeroRowsColumnsLocalIS">src/mat/interface/matrix.c</A>

## Examples
<A HREF="PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/ksp/ksp/tutorials/ex59.c.html">src/ksp/ksp/tutorials/ex59.c</A><BR>


---
[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)  
