Dear friends:
Please,Could you show me what is the difference between the two solutions below? What is the best? What is using Spline or Hermite?
data = Table[{i, RandomReal[i]}, {i, 1, 10}]
f = Interpolation[data];
Plot[f[x], {x, 1, 10}, Epilog -> {PointSize[Medium], Point[data]}]
and
data = Table[{i, RandomReal[i]}, {i, 1, 10}]
ListLinePlot[data, Epilog -> {PointSize[Medium], Point[data]},
InterpolationOrder -> 2]
Thank you
Ana