Package pulse.math

Class ParameterVector

  • All Implemented Interfaces:
    Serializable

    public class ParameterVector
    extends Object
    implements Serializable
    A wrapper subclass that assigns ParameterIdentifiers to specific components of the vector. Used when constructing the optimisation vector.
    See Also:
    Serialized Form
    • Constructor Detail

      • ParameterVector

        public ParameterVector​(List<ParameterIdentifier> indices)
        Constructs an IndexedVector with the specified list of keywords.
        Parameters:
        indices - a list of keywords
      • ParameterVector

        public ParameterVector​(ParameterVector proto,
                               Vector v)
        Constructs an IndexedVector based on v and a list of keyword indices
        Parameters:
        proto - prototype vector
        v - the vector to be copied
      • ParameterVector

        public ParameterVector​(ParameterVector v)
        Copy constructor
        Parameters:
        v - another vector
    • Method Detail

      • findMalformedElements

        public List<NumericProperty> findMalformedElements()
        Finds any elements of this vector which do not pass sanity checks.
        Returns:
        a list of malformed numeric properties
      • setValues

        public void setValues​(Vector v)
      • dimension

        public int dimension()
      • toVector

        public Vector toVector()