public interface org.apache.commons.math3.stat.regression.UpdatingMultipleLinearRegression
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.apache.commons.math3.stat.regression.UpdatingMultipleLinearRegression
  super_class: java.lang.Object
{
  public abstract boolean hasIntercept();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long getN();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void addObservation(double[], double);
    descriptor: ([DD)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.stat.regression.ModelSpecificationException
    MethodParameters:
      Name  Flags
      x     
      y     

  public abstract void addObservations(double[][], double[]);
    descriptor: ([[D[D)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.stat.regression.ModelSpecificationException
    MethodParameters:
      Name  Flags
      x     
      y     

  public abstract void clear();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.apache.commons.math3.stat.regression.RegressionResults regress();
    descriptor: ()Lorg/apache/commons/math3/stat/regression/RegressionResults;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.stat.regression.ModelSpecificationException, org.apache.commons.math3.exception.NoDataException

  public abstract org.apache.commons.math3.stat.regression.RegressionResults regress(int[]);
    descriptor: ([I)Lorg/apache/commons/math3/stat/regression/RegressionResults;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.stat.regression.ModelSpecificationException, org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
                    Name  Flags
      variablesToInclude  
}
SourceFile: "UpdatingMultipleLinearRegression.java"