This must be an easy question.
I have a matrix (2D Array) of 293 rows and 200 columns (293 x 200), and I want to interpolate them to get a 2D Array of 241 rows and 145 columns (241 x 145), what is the easiest way to do it in Matlab ?
I can use interp1, and a for loop and apply it on each row, but it will take a lot of time, is there a faster or a simpler way to do it ?
Thanks