我的问题的总结是我正在尝试复制 Matlab 函数:
mvnrnd(mu', sigma, 200)
进入 Julia 使用:
rand( MvNormal(mu, sigma), 200)'
结果是一个 200 x 7 的矩阵,本质上是生成 200 个随机返回的时间序列数据。
Matlab 有效,而 Julia 无效。
我的输入矩阵是:
mu = [0.15; 0.03; 0.06; 0.04; 0.1; 0.02; 0.12]
sigma = [0.0035 -0.0038 0.0020 0.0017 -0.0006 -0.0028 0.0009;
-0.0038 0.0046 -0.0011 0.0001 0.0003 0.0054 -0.0024;
0.0020 -0.0011 0.0041 0.0068 -0.0004 0.0047 -0.0036;
0.0017 0.0001 0.0068 0.0125 0.0002 0.0109 -0.0078;
-0.0006 0.0003 -0.0004 0.0002 0.0025 -0.0004 -0.0007;
-0.0028 0.0054 0.0047 0.0109 -0.0004 0.0159 -0.0093;
0.0009 -0.0024 -0.0036 -0.0078 -0.0007 -0.0093 0.0061]
使用 Distributions.jl,运行该行:
MvNormal(sigma)
产生错误:
ERROR: LoadError: Base.LinAlg.PosDefException(4)
矩阵 sigma 是对称的,但只是半正定的:
issym(sigma) #symmetrical
> true
isposdef(sigma) #positive definite
> false
using LinearOperators
check_positive_definite(sigma) #check for positive (semi-)definite
> true
Matlab 为这些测试产生相同的结果,但是 Matlab 能够生成 200x7 随机返回样本矩阵。
有人可以建议我可以做些什么来让它在 Julia 中工作吗?或者问题出在哪里?
谢谢。