Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
557 views
in Technique[技术] by (71.8m points)

python - How to implement a transition matrix as a numpy array and generate a Markov chain from it?

I want to use python to generate a realisation of the Markov chain using the transition matrix given as

import numpy as np

T =np.array([ [0.40, 0.56, 0.03, 0.01],
     [0.45, 0.51, 0.01, 0.00],
     [0.25, 0.25, 0.25, 0.25],
     [0.00, 0.00, 0.01, 0.99] ])

How can I generate a Markov chain from this transition matrix?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...