Note
This is the documentation for the current state of the development branch of rustworkx. The documentation or APIs here can change prior to being released.
rustworkx.PyDAG.from_complex_adjacency_matrix#
- static PyDAG.from_complex_adjacency_matrix(matrix, /, null_value=0j)#
Create a new
PyDiGraphobject from an adjacency matrix with matrix elements of typecomplexThis method can be used to construct a new
PyDiGraphobject from an input adjacency matrix. The node weights will be the index from the matrix. The edge weights will be a complex value of the value from the matrix.This differs from the
from_adjacency_matrix()in that the type of the elements of the input matrix in this method must be acomplex(specifically anumpy.complex128) and the output graph edge weights will becomplextoo. While infrom_adjacency_matrix()the matrix elements are of typefloat(specificallynumpy.float64) and the edge weights in the output graph will befloattoo.- Parameters:
matrix (ndarray) – The input numpy array adjacency matrix to create a new
PyDiGraphobject from. It must be a 2 dimensional array and be acomplex/np.complex128data type.null_value (complex) – An optional complex that will treated as a null value. If any element in the input matrix is this value it will be treated as not an edge. By default this is
0.0+0.0j
- Returns:
A new graph object generated from the adjacency matrix
- Return type: