%% Movie Data Example: My Name Here % In preparation, clear the memory, figures and the screen: close all; clear; clc; %% 1. Load the data, convert to double format: %% 2. Visualize the data as a movie: figure(1) %% 3. Compute the mean, then visualize the mean as an image (in Figure 2) figure(2) %% 4. Mean subtract the data (nothing to show here, just the computations) %% 5. Visualize the mean-subtracted data as a movie: figure(3) %% 6-7. Compute the best basis vectors, and visualize the first four as images in a 2x2 array. figure(4) %% 8-9. Project the data to the best three dimensions, then plot the data in 3-D.