标签: eigen
我正在寻找E ++在C ++中相当于Matlab的expm()函数。 有谁知道如何找到这个?
请参阅Matlab的expm()函数文档。 https://www.mathworks.com/help/matlab/ref/expm.html
答案 0 :(得分:2)
请参阅matrix function module:
#include <unsupported/Eigen/MatrixFunctions> MatrixXd A = ..., expA; expA = A.exp();