Base class for all CS problems. The problems follow the quation below:
where is an operator acting on a sparse signal
and
is the observation vector.
can be factored
into
which represents the system response and
basis that sparsifies the signal.
Attributes : | name : string
A : Instance of a subclass of opBase
M : Instance of a subclass of opBase
B : Instance of a subclass of opBase
b : array of arbitrary shape
signal : array of arbitrary shape
signal_shape : tuple of integers
|
---|---|
Methods : | reconstruct : Reconstruct signal from sparse coefficients. |
Parameters : | name : str
noseed: Boolean, optional (default=False) :
|
Attributes
A | Response of the problem |
B | Base matrix |
M | Sampling matrix |
b | Observation vector |
name | Name of the problem |
signal | Signal (Not in sparsifying basis) |
signal_shape | Shape of the signal |
x0 | Solution to problem |