solve_direct# planestress.analysis.solver.solve_direct(k: ndarray[Any, dtype[float64]], f: ndarray[Any, dtype[float64]]) → ndarray[Any, dtype[float64]][source]# Solves a linear system using the direct solver method. Parameters: k (ndarray[Any, dtype[float64]]) – N x N matrix of the linear system. f (ndarray[Any, dtype[float64]]) – N x 1 right hand side of the linear system. Returns: The solution vector to the linear system of equations. Return type: ndarray[Any, dtype[float64]]