:orphan: # VecSet Sets all components of a vector to a single scalar value. ## Synopsis ``` #include "petscvec.h" PetscErrorCode VecSet(Vec x, PetscScalar alpha) ``` Logically Collective ## Input Parameters - ***x -*** the vector - ***alpha -*** the scalar ## Notes For a vector of dimension n, `VecSet()` sets x[i] = alpha, for i=1,...,n, so that all vector entries then equal the identical scalar value, `alpha`. Use the more general routine `VecSetValues()` to set different vector entries. You CANNOT call this after you have called `VecSetValues()` but before you call `VecAssemblyBegin()` ## See Also [](ch_vectors), `Vec`, `VecSetValues()`, `VecSetValuesBlocked()`, `VecSetRandom()` ## Level beginner ## Location src/vec/vec/interface/rvector.c ## Examples src/dm/impls/plex/tutorials/ex14.c
src/dm/impls/plex/tutorials/ex7.c
src/dm/impls/stag/tutorials/ex1.c
src/dm/impls/stag/tutorials/ex2.c
src/dm/impls/stag/tutorials/ex3.c
src/dm/impls/stag/tutorials/ex4.c
src/dm/impls/stag/tutorials/ex6.c
src/dm/tutorials/ex1.c
src/dm/tutorials/ex10.c
src/dm/tutorials/ex14.c
src/dm/tutorials/ex5.c
## Implementations VecSet_Nest in src/vec/vec/impls/nest/vecnest.c
VecSet_Seq in src/vec/vec/impls/seq/dvec2.c
VecSet_SeqKokkos in src/vec/vec/impls/seq/kokkos/veckok.kokkos.cxx
VecSet_SeqViennaCL in src/vec/vec/impls/seq/seqviennacl/vecviennacl.cxx
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/vec/vec/interface/rvector.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)