11:08 tltran_catmap.m
11/18/08 PM
%% Load an image image = imread('blobfish.png','PNG'); pixels = length(image); newstep = image; keepgoing = true; iterations = 0; %% Apply cat map to image while(keepgoing) oldstep = newstep; iterations = iterations + 1; for x=1:1:pixels for y=1:1:pixels a = x + y; % matrix operation b = x + 2*y; % matrix operation if (a > pixels && mod(a,pixels) ~= 0) a =...