1 2figure (1) 3 4Y = [ 82 30 44 24 21 17 27 57 7 3 ]; 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 = [ 37 17 21 15 11 7 16 18 4 1]; 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)