obtain parameter from Curve Fitting toolbox

조회 수: 1 (최근 30일)
audley james
audley james 2013년 10월 6일
편집: Matt J 2013년 10월 10일
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
David Sanchez
David Sanchez 2013년 10월 9일
Do you mean to send its value to the workspace?
audley james
audley james 2013년 10월 10일
yes my friend

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
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));

카테고리

Help CenterFile Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by