我使用样条曲线工具箱制作双三次样条曲线,如下所示:
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)的值。
这是否存在,还是我必须自己编写?