I am plotting smoothed data curves by applying the smooth option to the according diagram curve like this:
\addplot[color=black, mark=none, smooth] table[x=time, y=measured, col sep=semicolon] {./data.csv};
I was using those plots internally only. However, since those should be used for a scientific publication in the future I need some information about the smoothing polynomial in order to back the plotting up a bit.
I had a look into both the pgfplots manual and the pgf/TikZ manual which do not seem to provide any further information about the used smoothing polynomial or algorithm.
So does anyone know which approach/algorithm is used to smooth the data before plotting?