I have data arrays in matlab like this: 1 , 2 , 3 ; 2 , 4 , 6 ; ... is there a ready to use algorithm in Matlab which can interpolate data and give me something like this (for linear e.g) 1 , 2 , 3; 1.5 , 3 , 4.5; 2 , 4 , 6;
in this example my steps are going to 0.5 instead of 1. this is the easy case for linear interpolation. imagine i have 10000 rows and i want have cubic interpolation and increase the resolution between my data.... I know there is mathematics algorithms but first I want to make sure if there is any ready to use function for that.