Struct argmin::operator::ArgminOperator [] [src]

pub struct ArgminOperator<'a> {
    pub operator: &'a Array2<f64>,
    pub y: &'a Array1<f64>,
    pub target_cost: f64,
}

ArgminOperator

Fields

Operator (for now a simple 2D matrix)

y of Ax = y

Target cost function value for stopping criterions

Methods

impl<'a> ArgminOperator<'a>
[src]

[src]

Constructor

[src]

Set target cost function value

If the optimization reaches this value, it will be stopped.

[src]

Forward application of the operator (A*x)

[src]

Application of the transpose of the operator (AT * x)