python—马氏距离

https://blog.csdn.net/qq_45717425/article/details/120651436
python代码实现上述理论

#encoding='utf-8’
import numpy as np

def mas_distance(target_matrix,comp1=0,comp2=-1):
    mas_dis = np.mat(0)
    C1 = np.mat(target_matrix[comp1])
    C2 = np.mat(target_matrix[comp2])
    P1 =  C1- C2
    S = np.cov(target_matrix,rowvar=0)
    P2 =np.linalg.inv(S)
    P3 = P1.T
    mas_dis = P1*P2*P3
    return np.sqrt(mas_dis[0,0])

# matrix = np.empty(shape=[0, 3])
# matrix = np.append(matrix,np.array([10,15,29]).reshape(1,3),axis=0)
# matrix = np.append(matrix,np.array([15,46,13]).reshape(1,3),axis=0)
# matrix = np.append(matrix,np.array([23,21,30]).reshape(1,3),axis=0)
# matrix = np.append(matrix,np.array([11,9,35]).reshape(1,3),axis=0)
# print(matrix)
#
# print(mas_distance(matrix,1))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

榆钱不知秋

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

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

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

打赏作者

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

抵扣说明:

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

余额充值