% % Problem Epage 201 % Example 5.16 Epage 159 % % Written by: % -- % John L. Weatherwax 2008-02-20 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- clear all; close all; clc; addpath('../../Code/CSTool'); load insect; % <- size(insect) = [30 samples (10 for each insect),3 measurements] figure; hold on; plot3(insect(1:10,1),insect(1:10,2),insect(1:10,3),'ro'); plot3(insect(11:20,1),insect(11:20,2),insect(11:20,3),'gx'); plot3(insect(21:30,1),insect(21:30,2),insect(21:30,3),'b*'); hold off;