How can I fit a function that takes a range of x as input instead of just one value?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a set of measured data and a function that can be used to simulate that data (found online on a publication). The problem is that the function takes a range of x such as 40:0.01:50 as input, as well as some other parameters. I tried to use the fit function, but since it evaluates the function at each x, it doesn't work since I get the error of "Not enough input arguments". I wanted to use the fit function as it is simple to introduce ranges for the fitting parameters that I want to use with lower and upper. Is there any other way to do this or a solution?
4 comentarios
Torsten
el 6 de Jul. de 2022
We cannot give advice with the information given.
The usual fit functions use one input for x and parameters to produce one output y. That's what all optimization routines of MATLAB are based on.
Why does the function need a range of x-values as input to produce one (?) output y ?
Respuestas (1)
Image Analyst
el 6 de Jul. de 2022
Editada: Image Analyst
el 6 de Jul. de 2022
Just make your code prepared to handle vectors, like
x = 40:0.01:50;
y = MyFun(x)
function y = MyFun(x)
y = x .^ 2;
end
Ver también
Categorías
Más información sobre Interpolation 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!