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