Project 3 looks at the problem of trying to classify data. We're assuming that we many sets of data, each represented as a string of numbers. Our goal is to somehow arrange this data into groups, and perhaps discover how to use a smaller selection of the data that can represent the range of the entire set.
The data is stored in a single image called "Charlie". To view the image stored in the MATLAB file, issue the commands
load charlie;
image ( asdata / 255 );
axis image;
axis off;
For better viewing, use the command
set ( gcf, 'Renderer', 'opengl' )
To work with the image in MATLAB, you will need to extract the data
as an array of double precision real numbers:
load charlie;
asdata = double ( as );
You can go up one level to the Computational Science Projects page.