class org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation extends org.apache.commons.math3.fitting.leastsquares.AbstractEvaluation
minor version: 0
major version: 59
flags: flags: (0x0020) ACC_SUPER
this_class: org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation
super_class: org.apache.commons.math3.fitting.leastsquares.AbstractEvaluation
{
private final org.apache.commons.math3.linear.RealVector point;
descriptor: Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final org.apache.commons.math3.fitting.leastsquares.ValueAndJacobianFunction model;
descriptor: Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final org.apache.commons.math3.linear.RealVector target;
descriptor: Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private void <init>(org.apache.commons.math3.fitting.leastsquares.ValueAndJacobianFunction, org.apache.commons.math3.linear.RealVector, org.apache.commons.math3.linear.RealVector);
descriptor: (Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;Lorg/apache/commons/math3/linear/RealVector;Lorg/apache/commons/math3/linear/RealVector;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
aload 2
invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
invokespecial org.apache.commons.math3.fitting.leastsquares.AbstractEvaluation.<init>:(I)V
1: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.model:Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;
2: aload 0
aload 3
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.point:Lorg/apache/commons/math3/linear/RealVector;
3: aload 0
aload 2
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.target:Lorg/apache/commons/math3/linear/RealVector;
4: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation;
0 5 1 model Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;
0 5 2 target Lorg/apache/commons/math3/linear/RealVector;
0 5 3 point Lorg/apache/commons/math3/linear/RealVector;
MethodParameters:
Name Flags
model final
target final
point final
public org.apache.commons.math3.linear.RealMatrix getJacobian();
descriptor: ()Lorg/apache/commons/math3/linear/RealMatrix;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.model:Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;
aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.point:Lorg/apache/commons/math3/linear/RealVector;
invokevirtual org.apache.commons.math3.linear.RealVector.toArray:()[D
invokeinterface org.apache.commons.math3.fitting.leastsquares.ValueAndJacobianFunction.computeJacobian:([D)Lorg/apache/commons/math3/linear/RealMatrix;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation;
public org.apache.commons.math3.linear.RealVector getPoint();
descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.point:Lorg/apache/commons/math3/linear/RealVector;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation;
public org.apache.commons.math3.linear.RealVector getResiduals();
descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.target:Lorg/apache/commons/math3/linear/RealVector;
aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.model:Lorg/apache/commons/math3/fitting/leastsquares/ValueAndJacobianFunction;
aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation.point:Lorg/apache/commons/math3/linear/RealVector;
invokevirtual org.apache.commons.math3.linear.RealVector.toArray:()[D
invokeinterface org.apache.commons.math3.fitting.leastsquares.ValueAndJacobianFunction.computeValue:([D)Lorg/apache/commons/math3/linear/RealVector;
invokevirtual org.apache.commons.math3.linear.RealVector.subtract:(Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation;
}
SourceFile: "LeastSquaresFactory.java"
NestHost: org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory
InnerClasses:
private LocalLeastSquaresProblem = org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem of org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory
private LazyUnweightedEvaluation = org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem$LazyUnweightedEvaluation of org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalLeastSquaresProblem