Ejemplo n.º 1
0
 /// <summary>
 /// Computes the log10 of a vector pointwise
 /// </summary>
 /// <param name="x">The input vector</param>
 /// <returns></returns>
 public static Vector <T> Log10(Vector <T> x)
 {
     return(x.PointwiseLog10());
 }