Borrar filtros
Borrar filtros

How to construct an anonymous function from the result of the fit command?

4 visualizaciones (últimos 30 días)
Hello,
I am trying to do some data fitting with a data set that resembles an air bubble when plotted. I am trying to obtain a function that defines the surface of the bubble. The following result perfectly fits the the profile.
f=fit(x(:,2),-y(:,1),'smoothingspline')
plot(f,x(:,2),-y(:,1)
Now, I would like to create an anonymous function. How can I accomplish this?
Thank you.

Respuesta aceptada

Matt J
Matt J el 26 de Dic. de 2013
Editada: Matt J el 26 de Dic. de 2013
anonf=@(x) f(x)

Más respuestas (1)

The Matlab Spot
The Matlab Spot el 26 de Dic. de 2013
Editada: The Matlab Spot el 26 de Dic. de 2013
Refer Anonymous Functions for further details

Categorías

Más información sobre Get Started with Curve Fitting Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by