magni.cs.reconstruction.it._util module

Module providing miscellaneous utility functions for the different implementations of Iterative Thresholding (IT).

Routine listings

get_methods(module)
Extract relevant methods from module.
def _get_operators(module)
Extract relevant operators from module.
magni.cs.reconstruction.it._util._get_methods(module)[source]

Extract relevant methods from module.

Parameters:module (str) – The name of the module from which the methods should be extracted.
Returns:methods (tuple) – The names of the relevant methods from module.

Notes

Looks for functions with names starting with ‘wrap_calculate_using_’ in the module: _”module”.

magni.cs.reconstruction.it._util._get_operators(module)[source]

Extract relevant operators from module.

Parameters:module (str) – The name of the module from which the operators should be extracted.
Returns:methods (tuple) – The names of the relevant operators from module.

Notes

Looks for functions with names starting with ‘threshold_’ in the module _”module”.