PlainSolver#
- class PlainSolver(cond=None, lapack_driver=None)[source]#
Solve the
-norm ordinary least-squares problem without any regularization or constraints.That is, solve
The solution is calculated using
scipy.linalg.lstsq()
.- Parameters:
- condfloat or None
Cutoff for ‘small’ singular values of the data matrix. See
scipy.linalg.lstsq()
.- lapack_driverstr or None
Which LAPACK driver is used to solve the least-squares problem. See
scipy.linalg.lstsq()
.
Properties:- d#
Number of unknowns in each row of the operator matrix (number of columns of
and ).
- data_matrix#
data matrix .
- k#
Number of equations in the least-squares problem (number of rows of
and number of columns of ).
- lhs_matrix#
left-hand side data .
- options#
Keyword arguments for
scipy.linalg.lstsq()
.
- r#
Number of operator matrix rows to learn (number of rows of
and )
Methods:Compute the
-norm condition number of the data matrix .Make a copy of the solver.
Verify dimensions and save the data matrices.
Load a serialized solver from an HDF5 file, created previously from the
save()
method.Compute the residual of the
-norm regression objective for each row of the given operator matrix.Serialize the solver, saving it in HDF5 format.
Solve the Operator Inference regression via
scipy.linalg.lstsq()
.Verify the solver.