obtain parameter from Curve Fitting toolbox

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 comentarios

David Sanchez
David Sanchez el 9 de Oct. de 2013
Do you mean to send its value to the workspace?
audley james
audley james el 10 de Oct. de 2013
yes my friend

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 10 de Oct. de 2013
Editada: Matt J el 10 de Oct. de 2013
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));

Categorías

Más información sobre Curve Fitting Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 6 de Oct. de 2013

Editada:

el 10 de Oct. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by