%-------------------------------------% % Homework 5: 4.3 % % Date: 10/21/2002 % % % % Gun Srijuntongsiri % % gs61 % % ?????? % %-------------------------------------% % Variables: % i = vector of even integers b/w 0 and 50 % y = vector of square of i's format compact % Suppress extra space b/w lines disp(' int square'); % header i=0:2:50; % create i y = i.^2; % and its squares disp([i;y]'); % display the table