Saving an interpolated function to an m-file

11 Ansichten (letzte 30 Tage)
Julius de Hond
Julius de Hond am 19 Okt. 2019
Kommentiert: Ethan Duckworth am 12 Jul. 2021
I have some complicated function that I have interpolated using interp1() so that evaluating it is much faster. I would like the result of this interpolation to be available systemwide by saving it as a function in an .m-file. An example:
xd = -1:0.01:1;
yd = xd.^2;
f = @(x) interp(xd, yd, x);
Is there a way to save the result f to f.m such that I can evaluate f(x) anywhere?

Akzeptierte Antwort

Sai Bhargav Avula
Sai Bhargav Avula am 22 Okt. 2019
Hi,
To my understanding, you want to save the custom interpolation as function to be available for further evaluation.
For that you can write the code as a MATLAB function.
Here is a sample version for the example code you provided
function res = f(x)
xd = -1:0.01:1;
yd = xd.^2;
res = interp(xd, yd, x);
end
Hope this helps.
  2 Kommentare
Julius de Hond
Julius de Hond am 24 Okt. 2019
This is what I ended up doing, although it is not very elegant. I was hoping to find some workaround to save the interpolated function (f, in my original question) in some way that I could access it later, since I can delete my original data (xd and yd) from the workspace, and still have it working.
This still provided a significant speedup, though, so I'm happy with the result.
Ethan Duckworth
Ethan Duckworth am 12 Jul. 2021
I'm not positive, but I doubt you can save anything (memory, speed, etc.) by deleting the data and somehow keeping the function. The interp1 function by default uses linear interpolation, so suppose you had a million data points, and formed the interpolating function. The function itself would have something equivalent in size to the million data points built into the definition/formulas for the function! Of course, you can put the data inside the function file, and not keep it in the workspace.
On the other hand, you might be able to get a more compact/efficient regression function and throw the data away.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by