[Solved] Matrix Scale down using MATLAB [closed]


  1. You cannot have non-integer sized matrices. 22,5 is not a valid dimension of a matrix.
  2. If you are talking about images you can resize the matrix in Matlab using imresize.

.

 A = rand(254, 128);
 A = imresize(A, [45, 23]);

5

solved Matrix Scale down using MATLAB [closed]