Hello all,
I am writing a code for some data analysis, and I have to fit a spline to the local max and min points in data. To fit the spline I am using
fun1 = csape(x1,y1)
fun2 = csape(x2,y2)
I then have to find the mean of the two splines. For that I use the following code. (I did not want...