; IDL Version 6.2 (linux x86 m32)
; Journal File for angela@filament
; Working directory: /home/angela
; Date: Mon Jun  5 15:34:54 2006
 
?
window,2,title='cool'
widow,1
; % Attempt to call undefined procedure/function: 'WIDOW'.
window,1
xdoc
;---- Module: plot_goes.pro
;---- From:   /ssw/gen/idl/goes
;---> Call: pro plot_goes, i1, i2, bcolor=bcolor, quiet=quiet, $
;ascii=ascii, $
;fem=fem, fillnight=fillnight, saa=saa, fillsaa=fillsaa, $
;gdata=gxr_rec, low=low, high=high, gcolor=gcolor, $
;nodeftitle=nodeftitle, no6=no6, no7=no7, $
;three=three,title=title,thick=thick,_extra=plot_keywords, fast=fast, $
;grid_thick=grid_thick, timerange=timerange, noylab=noylab, intlab=intlab, $
;one_minute=one_minute, five_minute=five_minute, auto_range=auto_range, $
;hc=hc, hardcopy=hardcopy, landscape=landscape, portrait=portrait, $
;xsize=xsize, ysize=ysize, status=status, color=color, $
;goes6=goes6, goes7=goes7, goes8=goes8, goes9, goes10=goes10, goes11=goes11, goes12=goes12
help
x=10
help
help,x
which,'plot_goes.pro'
;/ssw/gen/idl/goes/plot_goes.pro
print,x
;      10
x=10.
help,x
print,x
;      10.0000
a=11.6
help,a
c=1/3
print,c
;       0
c=1./3.
print,c
;     0.333333
try=5./3. +4.1
print,try
;      5.76667
b='hhhhaaaa'
help,b
d=string(heeee)
; % STRING: Variable is undefined: HEEEE.
d=string('heeee')
print,d
;heeee
help,d
d=string(10)
print,d
;      10
help,d
b=findgen(4)
print,b[0:2]
;      0.00000      1.00000      2.00000
arr=[2,4,6,8]
print,arr[0]
;       2
help,arr
d=findgen(10)
print,d
;      0.00000      1.00000      2.00000      3.00000      4.00000      5.00000
;      6.00000      7.00000      8.00000      9.00000
help,d
e=2*d
print,e
;      0.00000      2.00000      4.00000      6.00000      8.00000      10.0000
;      12.0000      14.0000      16.0000      18.0000
f=e+1
print,f
;      1.00000      3.00000      5.00000      7.00000      9.00000      11.0000
;      13.0000      15.0000      17.0000      19.0000
u=fltarr(5)
print,u
;      0.00000      0.00000      0.00000      0.00000      0.00000
u(3)=7
print,max(f)
;      19.0000
print,total(e)
;      90.0000
g=findgen(200)
plot,g,sin(g)
plot,g,sin(g/2)
plot,g,sin(g/10)
