Adds a node to the parent graph that computes the dot product of arrays or scalars associated with the node and another node. Applies [Graph::dot] to the parent graph, `this` node and the `b` node. # Example ``` # use ciphercore_base::graphs::create_context; # use ciphercore_base::data_types::{INT32, array_type}; let c = create_context().unwrap(); let g = c.create_graph().unwrap(); let t = arra
(&self, b: Node)
| 650 | /// let n3 = n1.dot(n2).unwrap(); |
| 651 | /// ``` |
| 652 | pub fn dot(&self, b: Node) -> Result<Node> { |
| 653 | self.get_graph().dot(self.clone(), b) |
| 654 | } |
| 655 | |
| 656 | /// Adds a node to the parent graph that computes the matrix product of two arrays associated with the node and another node. |
| 657 | /// |