我有需要居中和缩放的数据,以便以原点为中心。然后需要旋转数据,使最大方差的方向在 x 轴上。然后计算数据的平均值和协方差。我需要协方差矩阵的第一个元素为 1。我认为这是通过调整比例因子来完成的,但我无法弄清楚比例因子应该是什么。
为了使数据居中,我去掉了平均值,为了旋转我使用 SVD,但缩放仍然是我的问题。
signature = numpy.loadtxt(name, comments = '%', usecols = (0,cols-1))
signature = numpy.transpose(signature)
#SVD to get D so that data can be scaled by 1/(highest singular value in D)
U, D, Vt = numpy.linalg.svd( signature , full_matrices=0)
cs = utils.centerscale(signature, scale=False)
signature = cs[0]
#plt.scatter(cs[0][0],cs[0][1],color='r')
#SVD so that data can be rotated so that direction of most variance is on x-axis
U, D, Vt = numpy.linalg.svd( signature , full_matrices=0)
cs = utils.centerscale(signature, center=False, scalefactor=D[0])
U, D, Vt = numpy.linalg.svd( cs[0] , full_matrices=0)
D = numpy.diag(D)
norm = numpy.dot(D,Vt)
以下是norm的均值和 cov 结果示例(测试用例使用 res)。
**********************************************************************
Failed example:
print numpy.mean(res, axis=1)
Expected:
[ 7.52074907e-18 -6.59917722e-18]
Got:
[ -1.22008884e-17 2.41126563e-17]
**********************************************************************
Failed example:
print numpy.cov(res, bias=1)
Expected:
[[ 1.00000000e+00 9.02112676e-18]
[ 9.02112676e-18 1.40592827e-01]]
Got:
[[ 4.16666667e-03 -1.57698124e-19]
[ -1.57698124e-19 5.85803446e-04]]
**********************************************************************
1 items had failures:
2 of 4 in __main__.processfile
***Test Failed*** 2 failures.
除了协方差矩阵的第一个元素,所有值都无关紧要,它必须是一个。
我试过到处找,找不到答案。任何帮助,将不胜感激。