petsc-3.8.4 2018-03-24
VecCopy
Copies a vector. y <- x
Synopsis
#include "petscvec.h"
PetscErrorCode VecCopy(Vec x,Vec y)
Logically Collective on Vec
Input Parameter
x -the vector
Output Parameter
y -the copy
Notes
For default parallel PETSc vectors, both x and y must be distributed in
the same manner; local copies are done.
Developer Notes
PetscCheckSameTypeAndComm(x,1,y,2) is not used on these vectors because we allow one
of the vectors to be sequential and one to be parallel so long as both have the same
local sizes. This is used in some internal functions in PETSc.
See Also
VecDuplicate()
Level:beginner
Location:src/vec/vec/interface/vector.c
Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages
Examples
src/vec/vec/examples/tutorials/ex1.c.html
src/vec/vec/examples/tutorials/ex19.c.html
src/vec/vec/examples/tutorials/ex1f.F.html
src/vec/vec/examples/tutorials/ex1f90.F90.html
src/vec/vec/examples/tutorials/ex4f.F.html
src/vec/vec/examples/tutorials/ex4f90.F90.html
src/vec/vec/examples/tutorials/ex20f90.F90.html
src/dm/examples/tutorials/ex15.c.html
src/ksp/ksp/examples/tutorials/ex9.c.html
src/ksp/ksp/examples/tutorials/ex28.c.html
src/ksp/ksp/examples/tutorials/ex14f.F.html