Beispiel #1
0
 /// <summary>
 /// Computes the value of the linear equation at the current point.
 /// </summary>
 /// <param name="point">Point at which linear equation must be evaluated.</param>
 /// <returns>the value of the linear equation at the current point.</returns>
 public T Value(Vector <T, TPolicy> point)
 {
     return(Policy.Add(Coefficients.DotProduct(point), ConstantTerm));
 }