所以我有矩阵:
t = np.array([[2,2],
[2,2]])
当我得到它的协方差时。
covx = np.cov(x)
我明白了:
[[0. 0.]
[0. 0.]]
当我得到它的协方差矩阵时,我也得到一个零矩阵:
corrx = np.corrcoef(x)
[[ nan nan]
[ nan nan]]
如果这是这个矩阵的正确答案,或者我错过了解释这种情况的一些数学,我有点困惑,因为我期望相关矩阵始终遵循这种格式:
correlations [[ 1. x]
[ x 1]]