I'm newbie in Matlab and I've done an interpolation but I don't know if it's possible to save the data. For example. This is my code:
load ab1.txt
x= ab1(:,2);
y= ab1(:,3);
z= 399.25:1:2179.5;
yi= interp1(x,y,z);
plot(x,y,'o',z,yi)
I have a lot of values like 352.4, 352.5 354.3... and I want to get, with the interpolation, only one value from every number.For example, for the value 352 I want to get the value of the interpolation. Is that possible? Or I will have to do something different like mediums or something like that?
interp1as you intended? As you did it now, it takes the dataseries(x,y)and interpolates for the valuesz=[399.25 400.25 401.25 402.25 .... 2178.25 2179.25]. So it's normal you get a lot of values in return, since you asked to find the interpolant of a lot of values. Saving data is done with the save function. – Gunther Struyf Aug 6 '12 at 9:46