Azzera filtri
Azzera filtri

interp1 function error

2 visualizzazioni (ultimi 30 giorni)
fima v
fima v il 7 Mag 2020
Risposto: Ameer Hamza il 8 Mag 2020
Hello i have made an interpolation of a descrete CSV file which is attached and turned it into continues function using interp1.
it went without an error , but when i tried to plot continues function using xq vector,it said
'Subscript indices must either be real positive integers or logicals.'
Where did i go wrong?
Thanks.
data = load('t2.csv');
x = data(:,1);
y = data(:,2);
%plot(x,y);
%hold on
x_data=x/(1e+6);
y_data=abs(y/(100));
plot(x_data,y_data);
coef_fun = @(lambda) interp1(x_data, y_data(x_data),lambda, 'linear', 'extrap'); %%%%FIRST FUNCTION
xq = linspace(5e-6,13.5e-6,10000);
plot(xq, coef_fun(xq))
%hold off

Risposta accettata

Ameer Hamza
Ameer Hamza il 8 Mag 2020
No need to index y_data with x_data
coef_fun = @(lambda) interp1(x_data, y_data, lambda, 'linear', 'extrap'); %%%%FIRST FUNCTION

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by