作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
根据 MATLAB 的 documentation :
[
V
,D
] = eig(A
,B
) returns diagonal matrixD
of generalized eigenvalues and full matrixV
whose columns are the corresponding right eigenvectors, so thatA*V = B*V*D
.
当我阅读可用的源代码时(似乎我看过 Octave、R、Scipy 的所有实现)导致 LAPACK 的 DGGEV
例程,这在 JavaScript 中不可用。
兔子洞包括Use Emscripten with Fortran: LAPACK binding并学习足够的 Fortran 和线性代数来自己完成。
有人知道更容易访问的东西吗?
我是一名优秀的程序员,十分优秀!