public float GetCosine(Dict other) { float[] a = GetVectFloat(this.Vect); float[] b = GetVectFloat(other.Vect); return(GetCosine(a, b)); }
public string GetVectStr() { var vect_f = Dict.GetVectFloat(Vect); return(string.Join(" ", vect_f)); }