Hi,
I am using graph-tool for my research, thanks for creating graph-tool.
I need to calculate average values from vertex and edge properties.
Property types are "vector<double>". When I use the "edge_average" function,
program gives 'RuntimeError'. How can I calculate averages from vector
property? Example code below:
g = Graph()
v1 = g.add_vertex()
v2 = g.add_vertex()
v3 = g.add_vertex()
e1 = g.add_edge(v1, v2)
e2= g.add_edge(v2, v3)
e3= g.add_edge(v1, v3)
e_properties = g.new_edge_property("vector<double>")
e_properties[e1] = [0.0005]
e_properties[e2] = [0.006,0.0007]
edge_average(g, e_properties)
Thanks!
--
View this message in context:
http://main-discussion-list-for-the-graph-tool-project.982480.n3.nabble.com/Average-calculation-from-vector-double-property-tp4026107.html
Sent from the Main discussion list for the graph-tool project mailing list
archive at Nabble.com.
_______________________________________________
graph-tool mailing list
[email protected]
http://lists.skewed.de/mailman/listinfo/graph-tool