:orphan: # VecPointwiseMult Computes the component-wise multiplication `w[i] = x[i] * y[i]`. ## Synopsis ``` #include "petscvec.h" PetscErrorCode VecPointwiseMult(Vec w, Vec x, Vec y) ``` Logically Collective ## Input Parameters - ***x -*** the first vector - ***y -*** the second vector ## Output Parameter - ***w -*** the result ## Note Any subset of the `x`, `y`, and `w` may be the same vector. ## See Also [](ch_vectors), `Vec`, `VecPointwiseDivide()`, `VecPointwiseMax()`, `VecPointwiseMin()`, `VecPointwiseMaxAbs()`, `VecMaxPointwiseDivide()` ## Level advanced ## Location src/vec/vec/interface/vector.c ## Examples src/ksp/ksp/tutorials/ex15.c
src/ksp/ksp/tutorials/ex15f.F90
src/snes/tutorials/ex36.c
src/tao/pde_constrained/tutorials/elliptic.c
src/tao/pde_constrained/tutorials/hyperbolic.c
src/tao/pde_constrained/tutorials/parabolic.c
src/tao/unconstrained/tutorials/burgers_spectral.c
src/tao/unconstrained/tutorials/spectraladjointassimilation.c
src/ts/tutorials/ex29.c
src/ts/tutorials/ex50.c
src/vec/vec/tutorials/ex1.c
## Implementations VecPointwiseMult_Nest in src/vec/vec/impls/nest/vecnest.c
VecPointwiseMult_Seq in src/vec/vec/impls/seq/bvec2.c
VecPointwiseMult_SeqKokkos in src/vec/vec/impls/seq/kokkos/veckok.kokkos.cxx
VecPointwiseMult_SeqViennaCL in src/vec/vec/impls/seq/seqviennacl/vecviennacl.cxx
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/vec/vec/interface/vector.c) [Index of all Vec routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)