插值法

1、語法 y=interp1(X,Y,xx,method) 2、代碼: x12=Y1(:,1) y12=Y1(:,2) xx=0:1:1500 % interp1進行分段線性插值,調用interp1的時候,默認線性    y1 = interp1(x12,y12,xx,'linear');     subplot(2,2,1);   plot(x12,y12,'o',xx,y1,'r')    
相關文章
相關標籤/搜索