For histogram number j, you get the following PHYSICA variables: variable name type description ------------------------------------------------------------------------ NBINS[j] vector number of bins HSTART[j] vector starting index HXLO[j] vector xmin HXINC[j] vector bin size HYLO[j] vector ymin HYINC[j] vector yinc HLO[j] vector underflow HHI[j] vector overflow STRTHT[j] vector starting index for title STRTHX[j] vector starting index for label LENHT[j] vector length of title LENHX[j] vector length of x label
For scatterplot number j, you get the following PHYSICA variables: variable name type description ------------------------------------------------------------------------ NSBINX[j] vector number of bins in x NSBINY[j] vector number of bins in y ISCAT[j] vector index of first bin SXLO[j] vector x minimum SXINC[j] vector x increment SYLO[j] vector y minimum SYINC[j] vector y increment OUTSID[1:8,j] matrix underflows and overflows STRTST[j] vector starting index for title STRTSX[j] vector starting index for x-label STRTSY[j] vector starting index for y-label LENST[j] vector length of title LENSX[j] vector length of x-label LENSY[j] vector length of y-label
Additional Information on:
To plot histogram n: label\xaxis htitle[strtht[n]:strtht[n]+lenht[n]-1] scalar\dummy j graph\hist loop(hxlo[n]+(j-0.5)*hxinc[n],j,1:nbins[n]) - data[hstart[n]:hstart[n]+nbins[n]-1]
To plot scatterplot n, using the diffusion type of density plot: label\xaxis stitle[strtst[n]:strtst[n]+lenst[n]-1] scalar\dummy j x = loop(sxlo[n]+(j-0.5)*sxinc[n],j,1:nsbinx[n]) y = loop(sylo[n]+(j-0.5)*syinc[n],j,1:nsbiny[n]) m = fold(data[iscat[n]:iscat[n]+nsbinx[n]*nsbiny[n]-1],nsbinx[n]) density\profiles\diffusion x y <-m ! <- is the transpose operator