Adds a node that joins a sequence of arrays along a given axis. This operation is similar to [the NumPy concatenate](https://numpy.org/doc/stable/reference/generated/numpy.concatenate.html). The input arrays should have the same shape except in the given axis. # Arguments `nodes` - vector of nodes containing arrays `axis` - axis along which the above arrays are joined # Returns New Concatenat
(&self, nodes: Vec<Node>, axis: u64)
| 2621 | /// let n3 = g.concatenate(vec![n1,n2], 2).unwrap(); |
| 2622 | /// ``` |
| 2623 | pub fn concatenate(&self, nodes: Vec<Node>, axis: u64) -> Result<Node> { |
| 2624 | self.add_node(nodes, vec![], Operation::Concatenate(axis)) |
| 2625 | } |
| 2626 | |
| 2627 | /// Adds a node creating a constant of a given type and value. |
| 2628 | /// |