obtain parameter from Curve Fitting toolbox
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I just bought the Curve Fitting toolbox. I am using the tpaps function :
It contains 'R(f)', a roughness measure (as shown in the link above). Can you guys tell me how to output the value of this measure.
regards.
2 个评论
回答(1 个)
Matt J
2013-10-10
编辑:Matt J
2013-10-10
I think the best you're going to be able to do is a numerical approximation. Something like
D1D1=@(z) diff(z,2,1);
D2D2=@(z) diff(z,2,2);
D1D2=@(z) diff(diff(z,1,1),2,1);
sqIntegral=@(z) norm(z,'fro').^2;
f=fnvals(tpaps(...),fineGrid);
Rf = sqIntegral(D1D1(f)) + sqIntegral(D1D2(f)) +sqIntegral(D2D2(f));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Curve Fitting Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!