Ignore:
Timestamp:
04/27/06 14:08:06 (18 years ago)
Author:
mar637
Message:

Web doc update for usage of ASAP v2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/tutorials/tutorial2.html

    r680 r1040  
    8888quotients = []                        # to hold the quotient scantables
    8989for scan in vec:                      # loop over input scantables
    90    on = scan.get_source("*_S")       
    91    off = scan.get_source("*_R")
    92    quotients.append(quotient(on,off)) # add this quotient to the vector
     90   quotients.append(scan.auto_quotient()) # add this quotient to the vector
    9391</pre></div>
    9492Let's have a look at the vector, and subtract a baseline
     
    9694for q in quotients:
    9795   print q
    98    q.auto_poly_baseline(order=1,insitu=True) 
     96   q.auto_poly_baseline(order=1,insitu=True)
    9997</pre></div>
    10098Now we average the lot together:
Note: See TracChangeset for help on using the changeset viewer.