Hi Eric,
This is fine.
>>> linalg.eigsh
<function eigsh at 0x038E3BB0>
My drawing question is,
Suppose I have a graph like,
>>> g = nx.DiGraph()
>>> g.add_path(['A','B','C',])
>>> g.add_path(['X','Y','Z',])
I can draw it and see the plotting(provided I imported "import matplotlib.pyplot as plt")
with,
>>> nx.draw(g)
>>> plt.show()
and I can also see the
>>> u = g.to_undirected()
>>> nodes = nx.shortest_path(u,'B').keys()
>>> s = g.subgraph(nodes)
>>> s = g.subgraph(nx.shortest_path(g.to_undirected(),'B'))
>>> nx.draw(s)
>>>plt.show()
In the same way, I like to see the drawing and plotting of numpy.linalg.eigvals(L) which is a subset of L as a subgraph,
that is to say first my graph -G is drawn and then my subgraph is drawn. Getting values I am facing no problem. Numpy is going fine.
Regards,
Subhabrata Banerjee.