1
polinom
emretti.Bir regresyon eğrisini çizmek çalışıyordu
emretti.Bir regresyon eğrisini çizmek çalışıyordu
Sorun, kullandığınız x
değerlerinin, uzunluk-2 vektörü olan xlim
çıktısı olmasıdır. Daha değerlerle bir x
vektörü tanımlamak gerekir:
norm_dist = sort(5*randn(1,50) + (1:50)); %// example x values
norm_time = 5*randn(1,50) + (1:50).^2; %// example y values
x = linspace(min(norm_dist), max(norm_dist), 200); %// define x values for plot
coef_fit = polyfit(norm_dist,norm_time,7);
y_fit = polyval(coef_fit,x);
plot(x,y_fit,'r');
hold on
plot(norm_dist, norm_time, 'b.') %// plot original points for comparison