Package com.imsl.math
Interface GenMinRes.Function
- All Known Subinterfaces:
GenMinRes.Preconditioner
- All Known Implementing Classes:
GenMinResEx1,GenMinResEx2,GenMinResEx3,GenMinResEx4,GenMinResEx5,GenMinResEx6,GenMinResEx7
- Enclosing class:
- GenMinRes
public static interface GenMinRes.Function
Public interface for the user supplied function to
GenMinRes.-
Method Summary
Modifier and TypeMethodDescriptionvoidamultp(double[] p, double[] z) Used to compute \( z = Ap \) whereAis the matrix of coefficients to solve andpandzare arrays of lengthn, the order of matrixA.
-
Method Details
-
amultp
void amultp(double[] p, double[] z) Used to compute \( z = Ap \) whereAis the matrix of coefficients to solve andpandzare arrays of lengthn, the order of matrixA.- Parameters:
p- an inputdoublearray of lengthngenerated during the implementation of thesolvemethod.z- an outputdoublearray of lengthn.
-