% A printout of a main procedure that produces
a
% plot of SeriesA vs. N and SeriesB vs. N (on
the same printout)
% and a hardcopy plot of the result of this
comparison.
n = 10;
plot(
1:n, seriesA( n ), 1:n, seriesB( n ) );
title('
SeriesA vs SeriesB, N = 10 ');
xlabel('
N '); ylabel( 'Series Value' );