VecDuplicateVecs#

Creates several vectors of the same type as an existing vector.

Synopsis#

#include "petscvec.h"   
PetscErrorCode VecDuplicateVecs(Vec v, PetscInt m, Vec *V[])

Collective

Input Parameters#

  • m - the number of vectors to obtain

  • v - a vector to mimic

Output Parameter#

  • V - location to put pointer to array of vectors

Note#

Use VecDestroyVecs() to free the space. Use VecDuplicate() to form a single vector.

Fortran Notes#

The Fortran interface is slightly different from that given below, it requires one to pass in V a Vec array of size at least m. See the PETSc for Fortran Users for details.

See Also#

Vectors and Parallel Data, Vec, PETSc for Fortran Users, VecDestroyVecs(), VecDuplicate(), VecCreate(), VecDuplicateVecsF90()

Level#

intermediate

Location#

src/vec/vec/interface/vector.c

Examples#

src/vec/vec/tutorials/ex1.c
src/tao/pde_constrained/tutorials/parabolic.c
src/tao/pde_constrained/tutorials/hyperbolic.c
src/vec/vec/tutorials/ex19.c
src/ksp/ksp/tutorials/ex49.c


Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages