petsc-3.7.1 2016-05-15
Report Typos and Errors

VecSetSizes

Sets the local and global sizes, and checks to determine compatibility

Synopsis

#include "petscvec.h"   
PetscErrorCode  VecSetSizes(Vec v, PetscInt n, PetscInt N)
Collective on Vec Many br

Input Parameters

v - the vector Many br
n - the local size (or PETSC_DECIDE to have it set) Many br
N - the global size (or PETSC_DECIDE) Many br

Notes

n and N cannot be both PETSC_DECIDE Many brIf one processor calls this with N of PETSC_DECIDE then all processors must, otherwise the program will hang. Many br

Many br

See Also

VecGetSize(), PetscSplitOwnership()

Level:intermediate
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/ex2.c.html
src/vec/vec/examples/tutorials/ex3.c.html
src/vec/vec/examples/tutorials/ex5.c.html
src/vec/vec/examples/tutorials/ex6.c.html
src/vec/vec/examples/tutorials/ex7.c.html
src/vec/vec/examples/tutorials/ex8.c.html
src/vec/vec/examples/tutorials/ex9.c.html
src/vec/vec/examples/tutorials/ex10.c.html
src/vec/vec/examples/tutorials/ex11.c.html
src/vec/vec/examples/tutorials/ex12.c.html