How I could apply logarithmic interpolation in my data. I used interp1, but it doesn't have reasonable curves when it comes to semilog curves. As far as I know,interp1 is for linear interpolation. Do I have to come up with my own codes? Pls give a piece of advice.
Many thanks.
i.e.
% set up data to interpolate
data_linear=10.^(-10:1:0);
% convert to log
data_log = 10*log10(data_linear);
% interpolate
data_log_intepolated =interp1(0:10,data_log,2:0.1:9);
% convert back
data_linear_intepolated = 10.^(data_log_intepolated/10);
rudzi <ee...@bristol.ac.uk> wrote in message <23210557.1224856768...@nitrogen.mathforum.org>...