def plot(self, solution: Vector) -> None: """Plot the recovered signal against the original unknown signal. :param solution: The recovered signal """ plots.plot_signals("LASSO", self.x, solution)
def plot(self, solution: Vector) -> None: """Plot the recovered signal against the original unknown signal. :param solution: The recovered signal """ plots.plot_signals("Sparse Logistic Least Squares", self.x, solution)
def plot(self, solution: Vector) -> None: # Plot the recovered signal plots.plot_signals("Non-Negative Least Squares", self.x, solution)
def plot(self, solution: Vector) -> None: """Plot the computed democratic representation against the original signal. :param solution: The computed democratic representation """ plots.plot_signals("Democratic Representation", self.b, solution)