how to realize look up function in m script

조회 수: 2 (최근 30일)
wenchao zhang
wenchao zhang 2024년 7월 5일
댓글: wenchao zhang 2024년 7월 6일
hello, i have x axle table and y axle table, when i set value within the range of x, how to get the output from y, may be some interpolation and curve smoothing should used. i hope it works in m script.
  댓글 수: 8
Walter Roberson
Walter Roberson 2024년 7월 5일
xi = interp1(y, x, yi, 'linear', 'extrap')
wenchao zhang
wenchao zhang 2024년 7월 6일
yes,you are right.

댓글을 달려면 로그인하십시오.

채택된 답변

wenchao zhang
wenchao zhang 2024년 7월 5일
편집: Walter Roberson 2024년 7월 5일
use interp1 seems ok,
x = 0:pi/4:2*pi;
v = sin(x);
xq = 0:pi/16:2*pi;
figure
vq2 = interp1(x,v,xq,'spline');
plot(x,v,'o',xq,vq2,':.');
xlim([0 2*pi]);
title('Spline Interpolation');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Smoothing에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by