Ask Your Question
0

defining function for graph (help needed)

asked 12 years ago

jtaa gravatar image

updated 10 years ago

slelievre gravatar image

I need help defining a function that does the following (I'm very new to Python/Sage).

I need a function called ihara(G) where G is any graph input by the user.

I need the function ihara(G) to return the Z resulting from all the calculations below:

D = G.to_directed()
L = D.line_graph()
L.delete_edges([((x,y,None), (y,x,None)) for x,y in G.edges( labels=None)])
L.delete_edges([((x,y,None), (y,x,None)) for y,x in G.edges( labels=None)])

IM = identity_matrix(QQ,D.size())
T = L.adjacency.matrix()

var('u')
X = IM-u*T
Z = X.det()

Could anybody help me with this? or at least get me started in the right direction...

Preview: (hide)

Comments

Is what you want the same as

sage: g=graphs.CycleGraph(5)
sage: g.ihara_zeta_function_inverse()

?

FrédéricC gravatar imageFrédéricC ( 10 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 12 years ago

fidbc gravatar image

To declare a function you can just follow this scheme

def function_name(<arguments>):
   "Optional documentation string."
   <Python/Sage instructions, could be multiple lines of code>
   return <variable/expression>

In your case, I guess you'd like to receive G as an argument, so it could be of the form

def ihara( G ):
   <your source code here>
   return Z

For more details on functions you can consult this webpage.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 425 times

Last updated: Dec 10 '14