Versions in this module Expand all Collapse all v0 v0.1.0 Oct 6, 2020 Changes in this version + type Vector struct + func NewVector(data ...float64) Vector + func NewVectorFromFloat64Array(data []float64) Vector + func (v Vector) Add(v1 Vector) Vector + func (v Vector) CrossProduct(v1 Vector) Vector + func (v Vector) Dimension() int + func (v Vector) DotProduct(v1 Vector) float64 + func (v Vector) Length() float64 + func (v Vector) ScalarMultiply(scalar float64) Vector + func (v Vector) Subtract(v1 Vector) Vector + func (v Vector) ToFloat64Array() []float64