function [data,x]=forcingdata(); %Forcing from the work of Myhre, G., Myhre, A. and Stordal, F., 2001, Historical Evolution of Radiative Forcing %of Climate, Atmospheric Environment, 35:2361-2373. The data used here are forcings relative to 1750. x=load('forcing.dat'); % 1. Well mixed greenhouse gases % 2. Tropospheric O3 % 3. Stratospheric O3 % 4. Fossil Fule Sulfate % 5. Fossel Fuel Soot % 6. Fuel Org Carbon % 7. Biomass Burning % 8. Indirect Aerosol % 9. Solar %10. Volcanic aerosol in stratosphere % 12. Temperature anomaly data.year=x(:,1); data.GH=x(:,2); data.TropO3=x(:,3); data.StratO3=x(:,4); data.Sul=x(:,5); data.Soot=x(:,6); data.Carbon=x(:,7); data.Biomas=x(:,8); data.Indir=x(:,9); data.Solar=x(:,10); data.Volcanic=x(:,11); data.TOT=sum(x(:,2:11)')';