1 2figure (1) 3 4Y = [ 64 31 40 21 12 15 15 12 6 4]; 5bar(Y); 6ylabel('MFlops'); 7title('Iterative Solve: GMRES(30) with ILU(0)'); 8 9text(1,22,'IBM SP2','Rotation',90) 10text(2,22,'IBM SP1','Rotation',90) 11text(3,22,'SGI PowerChallenge','Rotation',90) 12text(4,22,'SGI Indigo 2','Rotation',90) 13text(5,22,'166 MH Pentium','Rotation',90) 14text(6,22,'Cray T3D','Rotation',90) 15text(7,22,'DEC Alpha','Rotation',90) 16text(8,22,'Convex HP Exemplar','Rotation',90) 17text(9,22,'Sun Sparc5','Rotation',90) 18text(10,22,'Paragon','Rotation',90) 19 20figure(2) 21 22Y = [ 70 27 50 23 17 17 14 14 7 6]; 23bar(Y); 24ylabel('MFlops'); 25title('Matrix-vector Product'); 26 27text(1,22,'IBM SP2','Rotation',90) 28text(2,22,'IBM SP1','Rotation',90) 29text(3,22,'SGI PowerChallenge','Rotation',90) 30text(4,22,'SGI Indigo 2','Rotation',90) 31text(5,22,'166 MH Pentium','Rotation',90) 32text(6,22,'Cray T3D','Rotation',90) 33text(7,22,'DEC Alpha','Rotation',90) 34text(8,22,'Convex HP Exemplar','Rotation',90) 35text(9,22,'Sun Sparc5','Rotation',90) 36text(10,22,'Paragon','Rotation',90) 37