Scilab Function
Last update : 5/9/2006

draw_degree - Display the degree distribution of the network

Calling Sequence

draw_degree(g,flag)

Parameters

Description

draw_degree is used to display the degree distribution of the network, here g is the scilab G list, flag=0,1,2 represents the nn, ln, ll scale of the axes. here 'l' stands for logarithmic scale and graduation and 'n' for normal scale.

Examples

	  [a b]=ba(6,4,9994);
	  g=make_graph('ab',0,10000,a,b);
	  draw_degree(g,2);
	  

See Also

draw_graph ,  

Authors

Wubo