% % Example on epage XXX % % Problem on epage 517 % % 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'); randn('seed',0); rand('seed',0); % This loads up x and y vectors corresponding to point locations. % --it also loads up a two column matrix containing the vertices to the region. load bodmin % Plot locations as points. plot(x,y,'.k'); hold on % Plot boundary as line. plot( bodpoly(:,1), bodpoly(:,2), 'x-' ); title( 'bodmin dot plot' ); %saveas( gcf, '../../WriteUp/Graphics/Chapter12/prob_12_3_chain', 'epsc' ); clear functions;