我正在使用样条工具箱制作双三次样条,如下所示:
ft = 'cubicinterp';
opts = fitoptions( ft );
[xInput, yInput, zOutput] = prepareSurfaceData( xMesh, yMesh, Z );
[fitresult, gof] = fit( [xInput, yInput], zOutput, ft, opts );
我知道我可以使用http://www.mathworks.com/help/toolbox/curvefit/differentiate.html来区分 x 或 y 方向,但我想要区分的值是结(即 Z)。
这存在吗,还是我必须自己写?