Package ch.nolix.core.math.algebra
Klasse Vector
java.lang.Object
ch.nolix.core.math.algebra.Vector
A
Vector
is not mutable.- Version:
- 2016-02-01
- Autor:
- Silvan Wyss
-
Feldübersicht
Felder -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
static Vector
fromArray
(double[] values) double
double
getProduct
(double factor) int
getSize()
double
getValueAt1BasedIndex
(int param1BasedIndex) int
hashCode()
boolean
hasSameSizeAs
(Vector vector) double[]
toArray()
toString()
static Vector
withValue
(double value, double... values) static Vector
withValues
(double[] values)
-
Felddetails
-
EMPTY_VECTOR
-
-
Methodendetails
-
fromArray
- Parameter:
values
-- Gibt zurück:
- a new
Vector
with the given values.
-
withValue
- Parameter:
value
-values
-- Gibt zurück:
- a new
Vector
with the given values.
-
withValues
- Parameter:
values
-- Gibt zurück:
- a new
Vector
with the given values.
-
equals
-
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
-
getSize
public int getSize()- Gibt zurück:
- the size of the current
Vector
.
-
getSum
-
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 currentVector
.
-
hashCode
public int hashCode() -
hasSameSizeAs
-
toArray
public double[] toArray()- Gibt zurück:
- an array with the values of the current
Vector
-
toString
-