java.lang.Object
org.apache.commons.math3.optim.nonlinear.vector.Target
All Implemented Interfaces:
OptimizationData

@Deprecated public class Target extends Object implements OptimizationData
Deprecated.
All classes and interfaces in this package are deprecated. The optimizers that were provided here were moved to the org.apache.commons.math3.fitting.leastsquares package (cf. MATH-1008).
Target of the optimization procedure. They are the values which the objective vector function must reproduce When the parameters of the model have been optimized.
Immutable class.
Since:
3.1
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final double[]
    Deprecated.
    Target values (of the objective vector function).
  • Constructor Summary

    Constructors
    Constructor
    Description
    Target(double[] observations)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    double[]
    Deprecated.
    Gets the initial guess.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • target

      private final double[] target
      Deprecated.
      Target values (of the objective vector function).
  • Constructor Details

    • Target

      public Target(double[] observations)
      Deprecated.
      Parameters:
      observations - Target values.
  • Method Details

    • getTarget

      public double[] getTarget()
      Deprecated.
      Gets the initial guess.
      Returns:
      the initial guess.