Feeds
답변 있음
I need to make a plot using spline interpolation?
x = [1.8 2.7 4.5 5.2 7.1 8.5]; y = [4 10.1 11.5 10.2 8.4 8.6]; xx = 5.5:1:5.5 yy = spline(x,y,xx) plot(x,y,'o',xx,yy) Use t...
I need to make a plot using spline interpolation?
x = [1.8 2.7 4.5 5.2 7.1 8.5]; y = [4 10.1 11.5 10.2 8.4 8.6]; xx = 5.5:1:5.5 yy = spline(x,y,xx) plot(x,y,'o',xx,yy) Use t...
11개월 전 | 0
