PageRank MATLAB / Octaveの実装をPythonに変換したいのですが、次のようになります。
a=array([[inf]])
last_v = dot(ones(N,1),a)
がありTypeError
ます。
Traceback (most recent call last):
File "/home/googcheng/page_rank.py", line 18, in <module>
pagerank(0,0)
File "/home/googcheng/page_rank.py", line 14, in pagerank
last_v = dot(ones(N,1),a)
File "/usr/lib/python2.7/dist-packages/numpy/core/numeric.py", line 1819, in ones
a = empty(shape, dtype, order)
TypeError: data type not understood
いくつかのコードhttps://gist.github.com/3722398