如何在JavaScript中实现MATLAB的“eig(A,B)”函数

时间:2015-05-15 23:45:14

标签: javascript matlab linear-algebra lapack

根据MATLAB的documentation

  

[VD] = eig(AB)返回广义特征值和全矩阵D的对角矩阵V其列是相应的右特征向量,因此A*V = B*V*D

当我阅读可用的源代码时(似乎所有我已经看过Octave,R,Scipy的实现)导致了LAPACK的DGGEV例程,这是JavaScript无法提供的。

兔子洞包括Use Emscripten with Fortran: LAPACK binding并且学习足够的Fortran和线性代数来自己做。

任何人都知道更容易获得的东西吗?

2 个答案:

答案 0 :(得分:5)

我最终使用Eigen库并结合Emscripten找到了成功。

现在,我的测试代码被硬编码为5x5矩阵,但这只是模板参数的问题。

我通过使用行主要1D数组将数据传入和传出函数。

代码看起来像:

#include <Eigen/Eigenvalues>
#typedef double ArrayMat5d[25];
#typedef double ArrayVec5d[5];
#typedef Eigen::Matrix<double, 5, 5, Eigen::RowMajor> Matrix5dR;
#typedef Eigen::Matrix<double, 5, 1> Vector5d;

extern "C" void eig(const ArrayMat5d A, const ArrayMat5d B,
        ArrayMat5d V, ArrayVec5d D) {
    Eigen::Map<const Matrix5dR> a(A);
    Eigen::Map<const Matrix5dR> b(B);
    const Eigen::GeneralizedSelfAdjointEigenSolver<Matrix5dR> solver(a, b);
    Eigen::Map<Matrix5dR> v(V);
    Eigen::Map<Vector5d> d(D);
    v = solver.eigenvectors();
    d = solver.eigenvalues();
}

我正在使用以下代码编译代码:

emcc -I /usr/include/eigen3 -O2 -o eig.js -s "DISABLE_EXCEPTION_CATCHING = 1" \ 
-s "NO_FILESYSTEM = 1" -s "NO_BROWSER = 1" -s "EXPORTED_FUNCTIONS = ['_eig']" \
-s "NO_EXIT_RUNTIME = 1" eig.cpp

从JavaScript方面:

// builds reference to eig function with argument type checking
var eig = Module.cwrap('eig', null, ['number', 'number', 'number', 'number']);

// sets up the two matrices
var P = new Float64Array([ 92.31360, 11.75040, -15.84640, -21.88800, -0.83200, 11.75040, 15.76960, -4.37760, -0.83200, 2.11200, -15.84640, -4.37760, 4.24960, 2.11200, -1.15200, -21.88800, -0.83200, 2.11200, 15.04000, -1.44000, -0.83200, 2.11200, -1.15200, -1.44000, -2.24000 ]);
var Q = new Float64Array([ 60.16, -2.88, 0.0, 0.0, 0.0, -2.88, 17.28, -2.88, 0.0, 0.0, 0.0, -2.88, 8.96, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 ]);

// allocates memory for input and output matrices
var matLength = 25;
var vecLength = 5;
var matSize = matLength * P.BYTES_PER_ELEMENT;
var vecSize = vecLength * P.BYTES_PER_ELEMENT;

var Pptr = Module._malloc(matSize);
var Qptr = Module._malloc(matSize);
var Vptr = Module._malloc(matSize);
var Dptr = Module._malloc(vecSize);

// gets references to Emscripten heap
var Pheap = new Uint8Array(Module.HEAPU8.buffer, Pptr, matSize);
var Qheap = new Uint8Array(Module.HEAPU8.buffer, Qptr, matSize);
var Vheap = new Uint8Array(Module.HEAPU8.buffer, Vptr, matSize);
var Dheap = new Uint8Array(Module.HEAPU8.buffer, Dptr, vecSize);

// copies input matrices into Emscripten heap
Pheap.set(new Uint8Array(P.buffer));
Qheap.set(new Uint8Array(Q.buffer));

// calls the function (finally!)
eig(Pheap.byteOffset, Qheap.byteOffset, Vheap.byteOffset, Dheap.byteOffset);

// Gets double views into Emscripten heap containing results
var Vresult = new Float64Array(Vheap.buffer, Vheap.byteOffset, P.length);
var Dresult = new Float64Array(Dheap.buffer, Dheap.byteOffset, vecLength);

console.log(Vresult);
console.log(Dresult);

// Frees up allocated memory
Module._free(Pheap.byteOffset);
Module._free(Qheap.byteOffset);
Module._free(Vheap.byteOffset);
Module._free(Dheap.byteOffset);

整个过程非常有效。在级别-O2,我得到大约800毫秒的时间来运行10000次迭代,结果与我原来的C ++测试代码完全匹配。 (-O0的速度恰好慢了10倍。)

现在完成椭圆拟合!

答案 1 :(得分:0)

我制作了一个JavaScript模块来计算特征值,特征向量或RREF(精简行梯形表格)。您可以使用npm i @ahmaddynugroho/eig

进行安装

示例:

const e = require('@ahmaddynugroho/eig')

const A = [[7,3],[3,-1]]
const ans = e.eig(A)
console.log(ans)

这将记录ans对象,如下所示:

{
  eigval: [ 8.000000000000009, -2.0000000000000004 ],
  eigvec: [
    [ -0.9486832980505129, 0.31622776601684044 ],
    [  0.3162277660168379, 0.9486832980505138  ]
  ]
}

就是这样,您只需要传递一个矩阵作为eig()的参数。顺便说一句,这里是the documentation