#include "petscmat.h" PetscErrorCode MatSetValuesLocal(Mat mat,PetscInt nrow,const PetscInt irow[],PetscInt ncol,const PetscInt icol[],const PetscScalar y[],InsertMode addv)Not Collective Many br
x | - the matrix Many br | |
nrow, irow | - number of rows and their local indices Many br | |
ncol, icol | - number of columns and their local indices Many br | |
y | - a logically two-dimensional array of values Many br | |
addv | - either INSERT_VALUES or ADD_VALUES, where Many brADD_VALUES adds values to any existing entries, and Many brINSERT_VALUES replaces existing entries with new values Many br |
If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatSetLocalToGlobalMapping() before using this routine Many br
Calls to MatSetValuesLocal() with the INSERT_VALUES and ADD_VALUES Many broptions cannot be mixed without intervening calls to the assembly Many brroutines. Many br
These values may be cached, so MatAssemblyBegin() and MatAssemblyEnd() Many brMUST be called after all calls to MatSetValuesLocal() have been completed. Many br
Many br
Level:intermediate
Location:src/mat/interface/matrix.c
Index of all Mat routines
Table of Contents for all manual pages
Index of all manual pages