Klasse Vector

java.lang.Object
ch.nolix.core.math.algebra.Vector

public final class Vector extends Object
A Vector is not mutable.
Version:
2016-02-01
Autor:
Silvan Wyss
  • Felddetails

    • EMPTY_VECTOR

      public static final Vector EMPTY_VECTOR
  • Methodendetails

    • fromArray

      public static Vector fromArray(double[] values)
      Parameter:
      values -
      Gibt zurück:
      a new Vector with the given values.
    • withValue

      public static Vector withValue(double value, double... values)
      Parameter:
      value -
      values -
      Gibt zurück:
      a new Vector with the given values.
    • withValues

      public static Vector withValues(double[] values)
      Parameter:
      values -
      Gibt zurück:
      a new Vector with the given values.
    • equals

      public boolean equals(Object object)
      Setzt außer Kraft:
      equals in Klasse Object
    • getEuclidNorm

      public double getEuclidNorm()
      Gibt zurück:
      the euclid norm of the current Vector.
    • getManhattanNorm

      public double getManhattanNorm()
      Gibt zurück:
      the Manhattan norm of the current Vector.
    • getProduct

      public Vector getProduct(double factor)
      Parameter:
      factor -
      Gibt zurück:
      a new Vector that is the product of the current Vector with the given factor.
    • getSize

      public int getSize()
      Gibt zurück:
      the size of the current Vector.
    • getSum

      public Vector getSum(Vector vector)
      Parameter:
      vector -
      Gibt zurück:
      a new Vector that is the sum of the current Vector and the given vector.
    • getValueAt1BasedIndex

      public double getValueAt1BasedIndex(int param1BasedIndex)
      Parameter:
      param1BasedIndex -
      Gibt zurück:
      the value of the current Vector at the given param1BasedIndex.
      Löst aus:
      ArgumentIsOutOfRangeException - if the given param1BasedIndex is not positive or the given param1BasedIndex is bigger than the size of the current Vector.
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object
    • hasSameSizeAs

      public boolean hasSameSizeAs(Vector vector)
    • toArray

      public double[] toArray()
      Gibt zurück:
      an array with the values of the current Vector
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Object