Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过 SQL 生成 (40000 x 20000) 矩阵并执行像 A'A 这样的矩阵运算。然后我需要获得特征值和特征向量。
你能建议我在 Perl 中实现这一点的方法吗?(也许通过PDL)
PDL
如何将存储在文件中的大矩阵相乘。?
谢谢你
$PDL::BIGPDL=1; $c = 序列(60000, 60000); ## 你需要 32gb 的内存和大约 75gb 的交换空间才能做到这一点。
$c * $d 与 PDL 中的 $cx $d 不同 我相信有用于特征值或特征向量的模块我还没有使用它们...