public class org.apache.commons.math3.analysis.interpolation.LoessInterpolator implements org.apache.commons.math3.analysis.interpolation.UnivariateInterpolator, java.io.Serializable
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.analysis.interpolation.LoessInterpolator
super_class: java.lang.Object
{
public static final double DEFAULT_BANDWIDTH;
descriptor: D
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0.3
public static final int DEFAULT_ROBUSTNESS_ITERS;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 2
public static final double DEFAULT_ACCURACY;
descriptor: D
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 1.0E-12
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 5204927143605193821
private final double bandwidth;
descriptor: D
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final int robustnessIters;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final double accuracy;
descriptor: D
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
ldc 0.3
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.bandwidth:D
2: aload 0
iconst_2
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.robustnessIters:I
3: aload 0
ldc 1.0E-12
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.accuracy:D
4: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/apache/commons/math3/analysis/interpolation/LoessInterpolator;
public void <init>(double, int);
descriptor: (DI)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=4, args_size=3
start local 0 start local 1 start local 3 0: aload 0
dload 1
iload 3
ldc 1.0E-12
invokespecial org.apache.commons.math3.analysis.interpolation.LoessInterpolator.<init>:(DID)V
1: return
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/analysis/interpolation/LoessInterpolator;
0 2 1 bandwidth D
0 2 3 robustnessIters I
MethodParameters:
Name Flags
bandwidth
robustnessIters
public void <init>(double, int, double);
descriptor: (DID)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=6, args_size=4
start local 0 start local 1 start local 3 start local 4 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: dload 1
dconst_0
dcmpg
iflt 3
2: dload 1
dconst_1
dcmpl
ifle 4
3: StackMap locals: org.apache.commons.math3.analysis.interpolation.LoessInterpolator double int double
StackMap stack:
new org.apache.commons.math3.exception.OutOfRangeException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.BANDWIDTH:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
dload 1
invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
iconst_0
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_1
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
athrow
4: StackMap locals:
StackMap stack:
aload 0
dload 1
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.bandwidth:D
5: iload 3
ifge 7
6: new org.apache.commons.math3.exception.NotPositiveException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ROBUSTNESS_ITERATIONS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
iload 3
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
athrow
7: StackMap locals:
StackMap stack:
aload 0
iload 3
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.robustnessIters:I
8: aload 0
dload 4
putfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.accuracy:D
9: return
end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/apache/commons/math3/analysis/interpolation/LoessInterpolator;
0 10 1 bandwidth D
0 10 3 robustnessIters I
0 10 4 accuracy D
Exceptions:
throws org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.NotPositiveException
MethodParameters:
Name Flags
bandwidth
robustnessIters
accuracy
public final org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction interpolate(double[], double[]);
descriptor: ([D[D)Lorg/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new org.apache.commons.math3.analysis.interpolation.SplineInterpolator
dup
invokespecial org.apache.commons.math3.analysis.interpolation.SplineInterpolator.<init>:()V
aload 1
aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.analysis.interpolation.LoessInterpolator.smooth:([D[D)[D
invokevirtual org.apache.commons.math3.analysis.interpolation.SplineInterpolator.interpolate:([D[D)Lorg/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/interpolation/LoessInterpolator;
0 1 1 xval [D
0 1 2 yval [D
Exceptions:
throws org.apache.commons.math3.exception.NonMonotonicSequenceException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NotFiniteNumberException, org.apache.commons.math3.exception.NumberIsTooSmallException
MethodParameters:
Name Flags
xval final
yval final
public final double[] smooth(double[], double[], double[]);
descriptor: ([D[D[D)[D
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=8, locals=42, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 1
arraylength
aload 2
arraylength
if_icmpeq 2
1: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 1
arraylength
aload 2
arraylength
invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
2: StackMap locals:
StackMap stack:
aload 1
arraylength
istore 4
start local 4 3: iload 4
ifne 5
4: new org.apache.commons.math3.exception.NoDataException
dup
invokespecial org.apache.commons.math3.exception.NoDataException.<init>:()V
athrow
5: StackMap locals: int
StackMap stack:
aload 1
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.checkAllFiniteReal:([D)V
6: aload 2
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.checkAllFiniteReal:([D)V
7: aload 3
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.checkAllFiniteReal:([D)V
8: aload 1
invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([D)V
9: iload 4
iconst_1
if_icmpne 11
10: iconst_1
newarray 7
dup
iconst_0
aload 2
iconst_0
daload
dastore
areturn
11: StackMap locals:
StackMap stack:
iload 4
iconst_2
if_icmpne 13
12: iconst_2
newarray 7
dup
iconst_0
aload 2
iconst_0
daload
dastore
dup
iconst_1
aload 2
iconst_1
daload
dastore
areturn
13: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.bandwidth:D
iload 4
i2d
dmul
d2i
istore 5
start local 5 14: iload 5
iconst_2
if_icmpge 18
15: new org.apache.commons.math3.exception.NumberIsTooSmallException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.BANDWIDTH:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
16: iload 5
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_2
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_1
17: invokespecial org.apache.commons.math3.exception.NumberIsTooSmallException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
athrow
18: StackMap locals: int
StackMap stack:
iload 4
newarray 7
astore 6
start local 6 19: iload 4
newarray 7
astore 7
start local 7 20: iload 4
newarray 7
astore 8
start local 8 21: iload 4
newarray 7
astore 9
start local 9 22: aload 9
dconst_1
invokestatic java.util.Arrays.fill:([DD)V
23: iconst_0
istore 10
start local 10 24: goto 90
25: StackMap locals: org.apache.commons.math3.analysis.interpolation.LoessInterpolator double[] double[] double[] int int double[] double[] double[] double[] int
StackMap stack:
iconst_2
newarray 10
dup
iconst_1
iload 5
iconst_1
isub
iastore
astore 11
start local 11 26: iconst_0
istore 12
start local 12 27: goto 71
28: StackMap locals: int[] int
StackMap stack:
aload 1
iload 12
daload
dstore 13
start local 13 29: iload 12
ifle 31
30: aload 1
aload 3
iload 12
aload 11
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.updateBandwidthInterval:([D[DI[I)V
31: StackMap locals: double
StackMap stack:
aload 11
iconst_0
iaload
istore 15
start local 15 32: aload 11
iconst_1
iaload
istore 16
start local 16 33: aload 1
iload 12
daload
aload 1
iload 15
daload
dsub
aload 1
iload 16
daload
aload 1
iload 12
daload
dsub
dcmpl
ifle 36
34: iload 15
istore 17
start local 17 35: goto 37
end local 17 36: StackMap locals: int int
StackMap stack:
iload 16
istore 17
start local 17 37: StackMap locals: int
StackMap stack:
dconst_0
dstore 18
start local 18 38: dconst_0
dstore 20
start local 20 39: dconst_0
dstore 22
start local 22 40: dconst_0
dstore 24
start local 24 41: dconst_0
dstore 26
start local 26 42: dconst_1
aload 1
iload 17
daload
dload 13
dsub
ddiv
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dstore 28
start local 28 43: iload 15
istore 30
start local 30 44: goto 58
45: StackMap locals: org.apache.commons.math3.analysis.interpolation.LoessInterpolator double[] double[] double[] int int double[] double[] double[] double[] int int[] int double int int int double double double double double double int
StackMap stack:
aload 1
iload 30
daload
dstore 31
start local 31 46: aload 2
iload 30
daload
dstore 33
start local 33 47: iload 30
iload 12
if_icmpge 48
dload 13
dload 31
dsub
goto 49
StackMap locals: double double
StackMap stack:
48: dload 31
dload 13
dsub
StackMap locals:
StackMap stack: double
49: dstore 35
start local 35 50: dload 35
dload 28
dmul
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.tricube:(D)D
aload 9
iload 30
daload
dmul
aload 3
iload 30
daload
dmul
dstore 37
start local 37 51: dload 31
dload 37
dmul
dstore 39
start local 39 52: dload 18
dload 37
dadd
dstore 18
53: dload 20
dload 39
dadd
dstore 20
54: dload 22
dload 31
dload 39
dmul
dadd
dstore 22
55: dload 24
dload 33
dload 37
dmul
dadd
dstore 24
56: dload 26
dload 33
dload 39
dmul
dadd
dstore 26
end local 39 end local 37 end local 35 end local 33 end local 31 57: iinc 30 1
StackMap locals:
StackMap stack:
58: iload 30
iload 16
if_icmple 45
end local 30 59: dload 20
dload 18
ddiv
dstore 30
start local 30 60: dload 24
dload 18
ddiv
dstore 32
start local 32 61: dload 26
dload 18
ddiv
dstore 34
start local 34 62: dload 22
dload 18
ddiv
dstore 36
start local 36 63: dload 36
dload 30
dload 30
dmul
dsub
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
aload 0
getfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.accuracy:D
dcmpg
ifge 66
64: dconst_0
dstore 38
start local 38 65: goto 67
end local 38 66: StackMap locals: org.apache.commons.math3.analysis.interpolation.LoessInterpolator double[] double[] double[] int int double[] double[] double[] double[] int int[] int double int int int double double double double double double double double double double
StackMap stack:
dload 34
dload 30
dload 32
dmul
dsub
dload 36
dload 30
dload 30
dmul
dsub
ddiv
dstore 38
start local 38 67: StackMap locals: double
StackMap stack:
dload 32
dload 38
dload 30
dmul
dsub
dstore 40
start local 40 68: aload 6
iload 12
dload 38
dload 13
dmul
dload 40
dadd
dastore
69: aload 7
iload 12
aload 2
iload 12
daload
aload 6
iload 12
daload
dsub
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dastore
end local 40 end local 38 end local 36 end local 34 end local 32 end local 30 end local 28 end local 26 end local 24 end local 22 end local 20 end local 18 end local 17 end local 16 end local 15 end local 13 70: iinc 12 1
StackMap locals: org.apache.commons.math3.analysis.interpolation.LoessInterpolator double[] double[] double[] int int double[] double[] double[] double[] int int[] int
StackMap stack:
71: iload 12
iload 4
if_icmplt 28
end local 12 72: iload 10
aload 0
getfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.robustnessIters:I
if_icmpne 74
73: goto 91
74: StackMap locals:
StackMap stack:
aload 7
iconst_0
aload 8
iconst_0
iload 4
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
75: aload 8
invokestatic java.util.Arrays.sort:([D)V
76: aload 8
iload 4
iconst_2
idiv
daload
dstore 12
start local 12 77: dload 12
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
aload 0
getfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.accuracy:D
dcmpg
ifge 79
78: goto 91
79: StackMap locals: double
StackMap stack:
iconst_0
istore 14
start local 14 80: goto 88
81: StackMap locals: int
StackMap stack:
aload 7
iload 14
daload
ldc 6.0
dload 12
dmul
ddiv
dstore 15
start local 15 82: dload 15
dconst_1
dcmpl
iflt 85
83: aload 9
iload 14
dconst_0
dastore
84: goto 87
85: StackMap locals: double
StackMap stack:
dconst_1
dload 15
dload 15
dmul
dsub
dstore 17
start local 17 86: aload 9
iload 14
dload 17
dload 17
dmul
dastore
end local 17 end local 15 87: StackMap locals:
StackMap stack:
iinc 14 1
StackMap locals:
StackMap stack:
88: iload 14
iload 4
if_icmplt 81
end local 14 end local 12 end local 11 89: iinc 10 1
StackMap locals:
StackMap stack:
90: iload 10
aload 0
getfield org.apache.commons.math3.analysis.interpolation.LoessInterpolator.robustnessIters:I
if_icmple 25
end local 10 91: StackMap locals:
StackMap stack:
aload 6
areturn
end local 9 end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 92 0 this Lorg/apache/commons/math3/analysis/interpolation/LoessInterpolator;
0 92 1 xval [D
0 92 2 yval [D
0 92 3 weights [D
3 92 4 n I
14 92 5 bandwidthInPoints I
19 92 6 res [D
20 92 7 residuals [D
21 92 8 sortedResiduals [D
22 92 9 robustnessWeights [D
24 91 10 iter I
26 89 11 bandwidthInterval [I
27 72 12 i I
29 70 13 x D
32 70 15 ileft I
33 70 16 iright I
35 36 17 edge I
37 70 17 edge I
38 70 18 sumWeights D
39 70 20 sumX D
40 70 22 sumXSquared D
41 70 24 sumY D
42 70 26 sumXY D
43 70 28 denom D
44 59 30 k I
46 57 31 xk D
47 57 33 yk D
50 57 35 dist D
51 57 37 w D
52 57 39 xkw D
60 70 30 meanX D
61 70 32 meanY D
62 70 34 meanXY D
63 70 36 meanXSquared D
65 66 38 beta D
67 70 38 beta D
68 70 40 alpha D
77 89 12 medianResidual D
80 89 14 i I
82 87 15 arg D
86 87 17 w D
Exceptions:
throws org.apache.commons.math3.exception.NonMonotonicSequenceException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NotFiniteNumberException, org.apache.commons.math3.exception.NumberIsTooSmallException
MethodParameters:
Name Flags
xval final
yval final
weights final
public final double[] smooth(double[], double[]);
descriptor: ([D[D)[D
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 1
arraylength
aload 2
arraylength
if_icmpeq 2
1: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 1
arraylength
aload 2
arraylength
invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
2: StackMap locals:
StackMap stack:
aload 1
arraylength
newarray 7
astore 3
start local 3 3: aload 3
dconst_1
invokestatic java.util.Arrays.fill:([DD)V
4: aload 0
aload 1
aload 2
aload 3
invokevirtual org.apache.commons.math3.analysis.interpolation.LoessInterpolator.smooth:([D[D[D)[D
areturn
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/analysis/interpolation/LoessInterpolator;
0 5 1 xval [D
0 5 2 yval [D
3 5 3 unitWeights [D
Exceptions:
throws org.apache.commons.math3.exception.NonMonotonicSequenceException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NotFiniteNumberException, org.apache.commons.math3.exception.NumberIsTooSmallException
MethodParameters:
Name Flags
xval final
yval final
private static void updateBandwidthInterval(double[], double[], int, int[]);
descriptor: ([D[DI[I)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=6, locals=8, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 3
iconst_0
iaload
istore 4
start local 4 1: aload 3
iconst_1
iaload
istore 5
start local 5 2: aload 1
iload 5
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.nextNonzero:([DI)I
istore 6
start local 6 3: iload 6
aload 0
arraylength
if_icmpge 7
aload 0
iload 6
daload
aload 0
iload 2
daload
dsub
aload 0
iload 2
daload
aload 0
iload 4
daload
dsub
dcmpg
ifge 7
4: aload 1
aload 3
iconst_0
iaload
invokestatic org.apache.commons.math3.analysis.interpolation.LoessInterpolator.nextNonzero:([DI)I
istore 7
start local 7 5: aload 3
iconst_0
iload 7
iastore
6: aload 3
iconst_1
iload 6
iastore
end local 7 7: StackMap locals: int int int
StackMap stack:
return
end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 xval [D
0 8 1 weights [D
0 8 2 i I
0 8 3 bandwidthInterval [I
1 8 4 left I
2 8 5 right I
3 8 6 nextRight I
5 7 7 nextLeft I
MethodParameters:
Name Flags
xval final
weights final
i final
bandwidthInterval final
private static int nextNonzero(double[], int);
descriptor: ([DI)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: iload 1
iconst_1
iadd
istore 2
start local 2 1: goto 3
2: StackMap locals: int
StackMap stack:
iinc 2 1
3: StackMap locals:
StackMap stack:
iload 2
aload 0
arraylength
if_icmpge 4
aload 0
iload 2
daload
dconst_0
dcmpl
ifeq 2
4: StackMap locals:
StackMap stack:
iload 2
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 weights [D
0 5 1 i I
1 5 2 j I
MethodParameters:
Name Flags
weights final
i final
private static double tricube(double);
descriptor: (D)D
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=6, locals=6, args_size=1
start local 0 0: dload 0
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dstore 2
start local 2 1: dload 2
dconst_1
dcmpl
iflt 3
2: dconst_0
dreturn
3: StackMap locals: double
StackMap stack:
dconst_1
dload 2
dload 2
dmul
dload 2
dmul
dsub
dstore 4
start local 4 4: dload 4
dload 4
dmul
dload 4
dmul
dreturn
end local 4 end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 x D
1 5 2 absX D
4 5 4 tmp D
MethodParameters:
Name Flags
x final
private static void checkAllFiniteReal(double[]);
descriptor: ([D)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: iconst_0
istore 1
start local 1 1: goto 4
2: StackMap locals: int
StackMap stack:
aload 0
iload 1
daload
invokestatic org.apache.commons.math3.util.MathUtils.checkFinite:(D)V
3: iinc 1 1
StackMap locals:
StackMap stack:
4: iload 1
aload 0
arraylength
if_icmplt 2
end local 1 5: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 values [D
1 5 1 i I
MethodParameters:
Name Flags
values final
public org.apache.commons.math3.analysis.UnivariateFunction interpolate(double[], double[]);
descriptor: ([D[D)Lorg/apache/commons/math3/analysis/UnivariateFunction;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.analysis.interpolation.LoessInterpolator.interpolate:([D[D)Lorg/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction;
areturn
LocalVariableTable:
Start End Slot Name Signature
Exceptions:
throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.DimensionMismatchException
}
SourceFile: "LoessInterpolator.java"