:orphan:
# MatDenseReplaceArray
Allows one to replace the array in a dense matrix with an array provided by the user. This is useful to avoid copying an array into a matrix
## Synopsis
```
#include "petscmat.h"
PetscErrorCode MatDenseReplaceArray(Mat mat, const PetscScalar *array)
```
Not Collective
## Input Parameters
- ***mat -*** the matrix
- ***array -*** the array in column major order
## Note
The memory passed in MUST be obtained with `PetscMalloc()` and CANNOT be
freed by the user. It will be freed when the matrix is destroyed.
## See Also
[](ch_matrices), `Mat`, `MatDensePlaceArray()`, `MatDenseGetArray()`, `VecReplaceArray()`
## Level
developer
## Location
src/mat/impls/dense/mpi/mpidense.c
## Implementations
MatDenseReplaceArray_MPIDense in src/mat/impls/dense/mpi/mpidense.c
MatDenseReplaceArray_SeqDense in src/mat/impls/dense/seq/dense.c
---
[Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/mat/impls/dense/mpi/mpidense.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)