| Description |
%Syntax: sinaset(hndl,Xp, Yp, xlbl, ylbl, tlt, sname)
%____________________________
% By this function you could simply plot and print your figures with any
% paper size you wish and save it in any location you want
%
% xlbl string, xlabel
% ylbl string, ylabel
% tlt string, title
% Xp x position in cm, e.g. Xp = 13.546666667; 512 pixel
% Yp y position in cm, e.g. Yp = 6.773333333; 256 pixel (1 pixel = 0.026458333 cm)
% hndl name of the figure handle
% sname string, name of the output file to be saved. e.g. 'result\1st period\autocorr'
%
% in case of plotting a graph like autocorrelation, code it as follow:
% h1=figure
% autocorr(monthly,floor(n/2),1)
% sinaset(h1, 13.546666667, 6.773333333, 'Lag (month)', 'Correlation Coefficient', 'Autocorrelation graph for monthly WL, 1966-1995', 'result\1st period\autocorr')
%
% Sina Khatami M.
% Department of Water Resources Engineering
% Lund University
% Lund, Sweden
%
% E-mail: khatami.sina@gmail.com
% Homepage: http://lu.academia.edu/SinaKhatamiM
%____________________________ |