petsc-3.6.2 2015-10-02
   
MatSetValue
Set a single entry into a matrix. Not collective
Synopsis
#include 
PetscErrorCode MatSetValue(Mat m,PetscInt row,PetscInt col,PetscScalar value,InsertMode mode)
Input Parameters
|  | m | - the matrix | 
|  | row | - the row location of the entry | 
|  | col | - the column location of the entry | 
|  | value | - the value to insert | 
|  | mode | - either INSERT_VALUES or ADD_VALUES | 
Notes
For efficiency one should use MatSetValues() and set several or many
values simultaneously if possible.
See Also
 MatSetValues(), MatSetValueLocal()
Level:beginner
Location:src/mat/../../include/petscmat.h
Index of all Mat routines
Table of Contents for all manual pages
Index of all manual pages
Examples
src/ksp/ksp/examples/tutorials/ex58.c.html
src/ksp/ksp/examples/tutorials/ex44f.F90.html
src/snes/examples/tutorials/ex48.c.html
src/snes/examples/tutorials/ex47cu.cu.html
src/ts/examples/tutorials/ex10.c.html
src/ts/examples/tutorials/ex24.c.html