Hi everyone, how can i convert a 2500x21 matrix into 2500x42 matrix by using cubic/spline interpolation.

1 visualización (últimos 30 días)
Hi everyone, how can i convert a 2500x21 matrix into 2500x42 matrix by using cubic/spline interpolation.

Respuestas (1)

KSSV
KSSV el 12 de Sept. de 2018
A = rand(2500,21) ;
B = zeros(2500,42) ;
for i = 1:2500
B(i,:) = interp1(1:21,A(i,:),linspace(0,21,42),'spline') ;
end
This can be vectorised using bsxfun

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by