:orphan: # MatKAIJGetS Get the `S` matrix describing the shift action of the `MATKAIJ` matrix ## Synopsis ``` #include "petscmat.h" PetscErrorCode MatKAIJGetS(Mat A, PetscInt *m, PetscInt *n, PetscScalar **S) ``` Not Collective; the entire `S` is stored and returned independently on all processes. ## Input Parameter - ***A -*** the `MATKAIJ` matrix ## Output Parameters - ***m -*** the number of rows in `S` - ***n -*** the number of columns in `S` - ***S -*** the S matrix, in form of a scalar array in column-major format ## Note All output parameters are optional (pass `NULL` if not desired) ## See Also [](ch_matrices), `Mat`, `MATKAIJ`, `MatCreateKAIJ()`, `MatGetBlockSizes()` ## Level advanced ## Location src/mat/impls/kaij/kaij.c --- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/mat/impls/kaij/kaij.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)