% % This shows the GSCATTER procedure in Matlab. % % Written by: % -- % John L. Weatherwax 2005-08-14 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- close all; drawnow; rehash; clc; clear; addpath( '../../Code/eda_data' ); addpath( '../../Code/eda_toolbox' ); addpath( '../Chapter1' ); load oronsay % If we want to use different colors for the groups, % we can use the following syntax. Note that this % is not the only way to do the colors. gscatter(oronsay(:,8),oronsay(:,9),midden) xlabel(labcol{8}) ylabel(labcol{9}) zlabel(labcol{10})