[Solved] Matrix Scale down using MATLAB [closed]
[ad_1] You cannot have non-integer sized matrices. 22,5 is not a valid dimension of a matrix. 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 [ad_2] solved Matrix Scale down using MATLAB [closed]