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_assistant_output/ToBeReviewed/STRING/strsci.html

    r338 r402  
    6262 
    6363     
    64  Given a number, returns a string of that          B 
    65  number in scientific notation format ( e.g. A x 10  ) 
     64 Given a number, returns a string of that B 
     65 number in scientific notation format ( e.g. A x 10^B ) 
    6666 
    6767 
     
    196196 
    197197    <h3>Examples</h3><pre> 
    198         Result = STRSCI( 2000000, format='(i1)' ) 
    199         print, result                 
    200         ;                                                     6 
    201         ;     prints 2 x 10!u6!n, which gets plotted as 2 x 10  
     198 
     199   IDL> Result = STRSCI( 2000000, format='(i1)' ) 
     200   IDL> print, result                 
     201   2 x 10!u6!n 
     202  
     203 which gets plotted as 2 x 10  
    202204         
    203        Result = STRSCI( -0.0001 ) 
    204        print, result 
    205         ;                                                            4 
    206         ;     prints -1.00 x 10!u-4!n, which gets plotted as 1.00 x 10 
    207  
    208         Result = STRSCI( 0d0, format='(f13.8)' ) 
    209         print, result 
    210         ; 
    211         ;     prints, 0.00000000 
     205   IDL> Result = STRSCI( -0.0001 ) 
     206   IDL> print, result 
     207   -1.00 x 10!u-4!n 
     208 
     209 which gets plotted as 1.00 x 10 
     210 
     211   IDL> Result = STRSCI( 0d0, format='(f13.8)' ) 
     212   IDL> print, result 
     213   0.00000000 
    212214  
    213215 
     
    215217     
    216218    <h4>Version</h4> 
    217  $Id: strsci.pro 325 2007-12-06 10:04:53Z pinsard $ 
     219 $Id: strsci.pro 374 2008-08-08 15:12:27Z pinsard $ 
    218220 
    219221 Copyright (C) 1998, 1999 Bob Yantosca and Martin Schultz,  
Note: See TracChangeset for help on using the changeset viewer.