How to interpolate for a particular index within vector?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
madhan ravi
el 21 de Nov. de 2018
Editada: madhan ravi
el 21 de Nov. de 2018
EDITED
y=load('ICE.mat');
x=linspace(2,6,15);
yy=interp1(y.DrehmomentICE1(15:30),x) %interpolated values like this?
2 comentarios
Shubham Mohan Tatpalliwar
el 21 de Nov. de 2018
Editada: madhan ravi
el 21 de Nov. de 2018
Ver también
Categorías
Más información sobre Interpolation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!