Lines Matching refs:solve
3 In Eigen, there are several methods available to solve linear systems when the coefficient matrix i…
62 // solve Ax = b
69 x = solver.solve(b);
74 // solve for another right hand side:
75 x1 = solver.solve(b1);
84 x = solver.compute(A).solve(b);
93 x1 = solver.solve(b1);
94 x2 = solver.solve(b2);
98 x1 = solver.solve(b1);
99 x2 = solver.solve(b2);
129 The solve() function computes the solution of the linear systems with one or many right hand sides.
131 X = solver.solve(B);
133 …or or a matrix where the columns form the different right hand sides. The solve() function can be …
135 x1 = solver.solve(b1);
137 x2 = solver.solve(b2);
140 … methods are more suitable and the desired accuracy can be set before the solve step using \b setT…