Home
last modified time | relevance | path

Searched refs:pointwise_mult (Results 1 – 3 of 3) sorted by relevance

/libCEED/python/tests/
H A Dtest-1-vector.py268 w.pointwise_mult(x, y)
273 w.pointwise_mult(w, y)
278 w.pointwise_mult(x, w)
283 y.pointwise_mult(y, y)
/libCEED/python/
H A Dceed_vector.py450 def pointwise_mult(self, x, y): member in Vector
/libCEED/rust/libceed/src/
H A Dvector.rs729 pub fn pointwise_mult(mut self, x: &Vector, y: &Vector) -> crate::Result<Self> { in pointwise_mult() method