function [Y] = load_GM_EPS() % LOAD_GM_EPS - Loads the quarterly earnings per share for General Moters (GM) stock % % Note this is used in exercise 6.9 % % Written by: % -- % John L. Weatherwax 2009-04-21 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- T = 1951:1979; Y = [ 0.53 0.52 0.34 0.50 ; 0.47 0.53 ].'; % get all the data we can in a "matrix" format ... Y = Y(:); %Y = [ Y; 256 ; 250 ; 198 ; 136 ; 73 ; 39 ; 32 ; 30 ; 31 ; 45 ]; % append the remaing data points ...