MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / compute

Method compute

tools/EigenUtils/EigenSolver.cpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6using namespace PyMesh;
7
8void EigenSolver::compute(const MatrixF& matrix) {
9 m_solver.compute(matrix);
10 m_eigen_values = m_solver.eigenvalues().real();
11 m_eigen_vectors = m_solver.eigenvectors().real();
12}
13
14void EigenSolver::compute_batch_symmetric(size_t dim, VectorF matrices) {
15 if (dim == 2) {

Callers 15

compute_unionMethod · 0.45
compute_intersectionMethod · 0.45
compute_differenceMethod · 0.45
solve_harmonicFunction · 0.45
solveFunction · 0.45
integrateFunction · 0.45
repousse_allFunction · 0.45
repousseFunction · 0.45
EigenSolverTest.hFile · 0.45

Calls

no outgoing calls

Tested by 7

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36