How to transpose a matrix without MATLAB's transpose tool -
I have an image that I have listed as a matrix. I want to transfer that image and then I want to display the image on the screen.
I would like to know how to do it "difficult" way, that is, without using MATLAB infection.
function [b] = trans (a) [rc] = size (a); B = zero (C, R); For I = 1: R = C for J = 1: cb (j, i) = a (i, j) end and end
Comments
Post a Comment