Ignore:
Timestamp:
07/23/09 11:18:49 (15 years ago)
Author:
smasson
Message:

update documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/idldoc_html_output/ToBeReviewed/STRING/strsci.html

    r338 r402  
    8888 
    8989      <div id="file_comments"> 
    90  Given a number, returns a string of that          B 
    91  number in scientific notation format ( e.g. A x 10  ) 
     90 Given a number, returns a string of that B 
     91 number in scientific notation format ( e.g. A x 10^B ) 
    9292</div> 
    9393 
     
    226226 
    227227          <h3>Examples</h3><div class="preformat"> 
    228         Result = STRSCI( 2000000, format='(i1)' ) 
    229         print, result                 
    230         ;                                                     6 
    231         ;     prints 2 x 10!u6!n, which gets plotted as 2 x 10  
     228 
     229   IDL> Result = STRSCI( 2000000, format='(i1)' ) 
     230   IDL> print, result                 
     231   2 x 10!u6!n 
     232  
     233 which gets plotted as 2 x 10  
    232234         
    233        Result = STRSCI( -0.0001 ) 
    234        print, result 
    235         ;                                                            4 
    236         ;     prints -1.00 x 10!u-4!n, which gets plotted as 1.00 x 10 
    237  
    238         Result = STRSCI( 0d0, format='(f13.8)' ) 
    239         print, result 
    240         ; 
    241         ;     prints, 0.00000000 
     235   IDL> Result = STRSCI( -0.0001 ) 
     236   IDL> print, result 
     237   -1.00 x 10!u-4!n 
     238 
     239 which gets plotted as 1.00 x 10 
     240 
     241   IDL> Result = STRSCI( 0d0, format='(f13.8)' ) 
     242   IDL> print, result 
     243   0.00000000 
    242244  
    243245</div> 
     
    245247           
    246248          <h4>Version</h4><div class="preformat"> 
    247  $Id: strsci.pro 325 2007-12-06 10:04:53Z pinsard $ 
     249 $Id: strsci.pro 374 2008-08-08 15:12:27Z pinsard $ 
    248250 
    249251 Copyright (C) 1998, 1999 Bob Yantosca and Martin Schultz,  
Note: See TracChangeset for help on using the changeset viewer.