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!