我在C++中編碼,我使用的是FEniCS fenics/2016.1.0。我的代碼的一部分是在特徵::矩陣中轉換一個dolfin ::矩陣
Matrix A;
Vector f;
std::vector<std::shared_ptr<const DirichletBC>> dirichlet_matrici({dirichlet});
assemble_system(A,f,a,L,dirichlet_matrici);
solve(A, *(u.vector()), f);
我想這樣解決本徵的系統,所以我需要在道芬::矩陣A和徵對象的道芬::向量F轉換。可能嗎? 感謝您的幫助
重複(無答案,無論):https://stackoverflow.com/questions/33565670/transform-dolfinmatrix-into-eigenmatrix – chtz