solve_direct¶
- sectionproperties.analysis.solver.solve_direct(k: csc_matrix, f: npt.NDArray[np.float64]) npt.NDArray[np.float64][source]¶
Solves a linear system using the direct solver method.
- Parameters:
k (csc_matrix) –
N x Nmatrix of the linear systemf (npt.NDArray[np.float64]) –
N x 1right hand side of the linear system
- Returns:
The solution vector to the linear system of equations
- Return type:
npt.NDArray[np.float64]