Adds a node to the parent graph that multiplies elementwise the array or scalar associated with the node by a binary array or scalar associated with another node. Applies [Graph::mixed_multiply] to the parent graph, `this` node and the `b` node. # Example ``` # use ciphercore_base::graphs::create_context; # use ciphercore_base::data_types::{BIT, INT32, scalar_type}; let c = create_context().unw
(&self, b: Node)
| 630 | /// let n3 = n1.mixed_multiply(n2).unwrap(); |
| 631 | /// ``` |
| 632 | pub fn mixed_multiply(&self, b: Node) -> Result<Node> { |
| 633 | self.get_graph().mixed_multiply(self.clone(), b) |
| 634 | } |
| 635 | |
| 636 | /// Adds a node to the parent graph that computes the dot product of arrays or scalars associated with the node and another node. |
| 637 | /// |
no test coverage detected