MATLAB: How can I do ROTATION OPERATION for both row and column

rotation

I want to make shifting for row and column. how can I do that?

Best Answer

result=rot90(input_mat)
Check imrotate also.
Related Question