petsc-3.5.4 2015-05-23
VecSetValue
Set a single entry into a vector.
Synopsis
#include
PetscErrorCode VecSetValue(Vec v,PetscInt row,PetscScalar value, InsertMode mode);
Not Collective
Input Parameters
| v | - the vector
|
| row | - the row location of the entry
|
| value | - the value to insert
|
| mode | - either INSERT_VALUES or ADD_VALUES
|
Notes
For efficiency one should use VecSetValues() and set several or
many values simultaneously if possible.
These values may be cached, so VecAssemblyBegin() and VecAssemblyEnd()
MUST be called after all calls to VecSetValues() have been completed.
VecSetValues() uses 0-based indices in Fortran as well as in C.
See Also
VecSetValues(), VecAssemblyBegin(), VecAssemblyEnd(), VecSetValuesBlockedLocal(), VecSetValueLocal()
Level:beginner
Location:src/vec/vec/../../../include/petscvec.h
Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages
Examples
src/sys/classes/viewer/examples/tutorials/ex3.c.html
src/ksp/ksp/examples/tutorials/ex43.c.html
src/ksp/ksp/examples/tutorials/ex49.c.html
src/ksp/ksp/examples/tutorials/ex56.c.html
src/snes/examples/tutorials/ex28.c.html
src/snes/examples/tutorials/ex30.c.html
src/snes/examples/tutorials/ex70.c.html