:orphan: # VecCreateSeq Creates a standard, sequential array-style vector. ## Synopsis ``` #include "petscvec.h" PetscErrorCode VecCreateSeq(MPI_Comm comm, PetscInt n, Vec *v) ``` Collective ## Input Parameters - ***comm -*** the communicator, should be `PETSC_COMM_SELF` - ***n -*** the vector length ## Output Parameter - ***V -*** the vector ## Notes Use `VecDuplicate()` or `VecDuplicateVecs()` to form additional vectors of the same type as an existing vector. ## See Also [](ch_vectors), `Vec`, `VecType`, `VecCreateMPI()`, `VecCreate()`, `VecDuplicate()`, `VecDuplicateVecs()`, `VecCreateGhost()` ## Level intermediate ## Location src/vec/vec/impls/seq/vseqcr.c ## Examples src/dm/field/tutorials/ex1.c
src/dm/tutorials/ex25.c
src/ksp/ksp/tutorials/ex43.c
src/ksp/pc/tutorials/ex1.c
src/ksp/pc/tutorials/ex2.c
src/snes/tutorials/ex1f.F90
src/tao/complementarity/tutorials/minsurf1.c
src/tao/leastsquares/tutorials/chwirut1.c
src/tao/leastsquares/tutorials/chwirut1f.F90
src/tao/leastsquares/tutorials/chwirut2.c
src/tao/leastsquares/tutorials/chwirut2f.F90
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/vec/vec/impls/seq/vseqcr.c) [Index of all Vec routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)