自从几天以来,我不断收到同样的错误,而使用 MATLAB,这发生在某些时候与 dlopen
。我对 MATLAB 很陌生,这就是为什么我不知道该怎么做。谷歌似乎也帮不了我。当我试图构造一个特征向量时,我得到了这个:
Error using eig
LAPACK loading error:
dlopen: cannot load any more object with static TLS
我在做乘法运算的时候也得到了这个结论:
Error using *
BLAS loading error:
dlopen: cannot load any more object with static TLS
当然,我的确在寻找解决这个问题的办法,但我不太明白,也不知道该怎么办。这些是我找到的线索:
有人能帮帮我吗?
>> randn(3,3)
ans =
2.7694 0.7254 -0.2050
-1.3499 -0.0631 -0.1241
3.0349 0.7147 1.4897
>> eig(ans)
Error using eig
LAPACK loading error:
dlopen: cannot load any more object with static TLS