


Here are some routines to do Gregorian labeling of stacked time series plots, including vector stick plots. Try using DEMOTPLT.M to see how TIMEPLT and STACKLBL work. IMPORTANT! If you resize the window, you must call TIMEPLT again to make the labels look right and have the vector sticks have the right orientation. Matlab will resize the window when you PRINT, so you need to ensure that the aspect ratio of the ''paperposition'' is the same as what the aspect ratio of the figure ''position'' is. A simple way to do this is to use the FIXPAPER command (included) in this distribution) before you print, which will ensure that what you get on paper is what you see on the screen! -Rich Signell


0001 % 0002 % Here are some routines to do Gregorian labeling of stacked time 0003 % series plots, including vector stick plots. 0004 % 0005 % Try using DEMOTPLT.M to see how TIMEPLT and STACKLBL work. 0006 % 0007 % IMPORTANT! If you resize the window, you must call TIMEPLT again 0008 % to make the labels look right and have the vector sticks have the 0009 % right orientation. Matlab will resize the window when you PRINT, 0010 % so you need to ensure that the aspect ratio of the ''paperposition'' 0011 % is the same as what the aspect ratio of the figure ''position'' is. 0012 % A simple way to do this is to use the FIXPAPER command (included) 0013 % in this distribution) before you print, which will ensure that what 0014 % you get on paper is what you see on the screen! 0015 % 0016 % -Rich Signell