Package gov.nih.mipav.model.algorithms
Class CeresSolver.CgnrLinearOperator
- java.lang.Object
-
- gov.nih.mipav.model.algorithms.CeresSolver.LinearOperator
-
- gov.nih.mipav.model.algorithms.CeresSolver.CgnrLinearOperator
-
- Enclosing class:
- CeresSolver
class CeresSolver.CgnrLinearOperator extends CeresSolver.LinearOperator
-
-
Field Summary
Fields Modifier and Type Field Description private CeresSolver.LinearOperator
A_
private double[]
D_
private double[]
z_
-
Constructor Summary
Constructors Constructor Description CgnrLinearOperator(CeresSolver.LinearOperator A, double[] D)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
LeftMultiply(double[] x, double[] y)
int
num_cols()
int
num_rows()
void
RightMultiply(double[] x, double[] y)
-
-
-
Field Detail
-
A_
private CeresSolver.LinearOperator A_
-
D_
private double[] D_
-
z_
private double[] z_
-
-
Constructor Detail
-
CgnrLinearOperator
public CgnrLinearOperator(CeresSolver.LinearOperator A, double[] D)
-
-
Method Detail
-
RightMultiply
public void RightMultiply(double[] x, double[] y)
- Specified by:
RightMultiply
in classCeresSolver.LinearOperator
-
LeftMultiply
public void LeftMultiply(double[] x, double[] y)
- Specified by:
LeftMultiply
in classCeresSolver.LinearOperator
-
num_rows
public int num_rows()
- Specified by:
num_rows
in classCeresSolver.LinearOperator
-
num_cols
public int num_cols()
- Specified by:
num_cols
in classCeresSolver.LinearOperator
-
-