答えて

2

問題は、使用しているxの値が長さ2のベクトルxlimの出力であることです。あなたはより多くの値を持つxベクトルを定義する必要があります。

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 

enter image description here