dpest.utils.rmv_svd#
- dpest.utils.rmv_svd.rmv_svd(pst_path)[source]#
Removes the SVD (singular value decomposition) section from a PEST control (.pst) file.
The SVD section is optional in a PEST control file. This function will remove it if present, and inform the user whether the section was found and removed or did not exist.
Required Arguments:#
- pst_path (str):
Path to the .pst PEST control file to modify.
Returns:#
None
Examples:#
Removing the SVD section from a PEST Control File:
from dpest.utils import rmv_svd rmv_svd( pst_path = "PEST_CONTROL.pst" )
This example removes the SVD section if it exists. If the section is not found, the function will notify the user that no SVD section was present to remove.