隐马尔科夫链

import numpy as np
R0=0.6
S0=0.4
R1=R0*0.1
S1=S0*0.6
l=np.array([[0.4,0.3], 
            [0.5,0.1]]) 
tran=np.array([[0.7,0.4], #R-R R-S
              [0.3,0.6]]) #S-R S-S


p1=R1*l[0,0]*tran[0,0] #R-R
p2=S1*l[0,0]*tran[0,1] #S-R

p3=R1*l[0,1]*tran[1,0] #R-S
p4=S1*l[0,1]*tran[1,1] #S-S

pp1=max(p1,p2)
pp2=max(p3,p4)
if p1>p2 and p3>p4:
    print("rainy")
else:
    print("sunny")
print(pp1,pp2)
sunny
0.038400000000000004 0.043199999999999995
t1=pp1*l[1,0]*tran[0,0] 
t2=pp1*l[1,1]*tran[1,0]
t3=pp2*l[1,0]*tran[0,1]
t4=pp2*l[1,1]*tran[1,1]
max1=max(t1,t2,t3,t4)
if t1>t2 and t3>t4:
    print("rainy")
else:
    print("sunny")
if t1>t3 or t1>t4 or t2>t3 or t2>t3:
    print("rainy")
else:
    print("sunny")
print(max1)
rainy
rainy
0.01344

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

@yuanzhong

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值