New to mma. I have imported a 3-dimensional array from a CSV file and used the Interpolation function to make the data continuous. I am now interested in taking the partial derivative of the interpolation function with respect to one of the two variables, but am at a loss for how this is done in the language:
timein = Import["file.csv"]
Dimensions[timein]
itime = Interpolation[timein, Method -> "Spline"]
Plot3D[itime[x, y], {x, 6, 30}, {y, 3, 24}]
D[itime, y]
Yields output of:
0
For the last line of the code.