0

I am trying to rebin a matrix to a larger size in matlab. In IDL you can always use rebin(matrix,dimension) to generate the new matrix. Is there any equivalent function in matlab, or do I have to manipulate the interp() function in matlab?

Thanks

beaker
  • 16,331
  • 3
  • 32
  • 49
colddie
  • 1,029
  • 1
  • 15
  • 28

1 Answers1

0

It seems like imresize() does the job. It can resize a matrix to given dimension.

colddie
  • 1,029
  • 1
  • 15
  • 28