-
The scaling function g(y) in an ASCII file, first column is y,
second column is g(y), y=0, y=1/128, y=2/128, ... up to y=8.84375:
[gy.txt]
-
g(y) with derivatives n an ASCII file, first column is y,
second column is g(y), and every sixteenth line column 3 to 6 contain
g'(y),
g''(y), g'''(y), and
g''''(y), respectively. Values
of y range from -8.625 to 8.625: [gy-deriv.txt].
To properly import the file in Mathematica, use:
gg = Import["gy-deriv.txt","Table"];
g = Interpolation[Table[{Rationalize[gg[[i]][[1]]],Rest[gg[[i]]]}
,{i,Length[gg]}],InterpolationOrder -> 57];
f = Function[y,g''[y]/4];
Plot[f[y],{y,-3,3}]
