How can I find it?
조회 수: 1 (최근 30일)
이전 댓글 표시
how can I find f(-0,3) on matlab?
댓글 수: 0
채택된 답변
Walter Roberson
2021년 6월 22일
There is not just one answer: it depends upon what model function you use
x = [-0.4, 0, 0.4, 0.8, 1.2]
fx = [-0.204, -0.07, -0.006, 0.442, 1.658]
fx03 = interp1(x, fx, -0.3)
fx03s = interp1(x, fx, -0.3, 'spline')
p3 = polyfit(x, fx, 3);
fx03p3 = polyval(p3, -0.3)
The cubic fit looks pretty good.
추가 답변 (1개)
Chunru
2021년 6월 22일
You can use interp1 to interpolate. 'doc interp1' for more details.
x = [-0.4 0 0.4 0.8 1.2];
f = [-0.204 -0.07 -0.006 0.442 1.658];
y = interp1(x, f, -0.3)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!