How to interpolate for a particular index within vector?
조회 수: 6 (최근 30일)
이전 댓글 표시
The uploaded vector is matrix of numbers from 2 to 99
i want to interpolate from column 15 to 30
within a range of 2 to 6
is it possible to interpolate for a particular range ?
댓글 수: 0
답변 (1개)
madhan ravi
2018년 11월 21일
편집: madhan ravi
2018년 11월 21일
EDITED
y=load('ICE.mat');
x=linspace(2,6,15);
yy=interp1(y.DrehmomentICE1(15:30),x) %interpolated values like this?
댓글 수: 2
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!