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/Matrix/zero_one.html

    r338 r402  
    114114 
    115115          <h3>Return value</h3><div class="preformat"> 
    116  result 
     116 an array of n1 dimension or n1xn2 dimensions 
    117117</div> 
    118118 
     
    127127              <span class="attr">required</span> 
    128128               
    129                
     129              <span class="attr">type:</span> <span class="value">integer</span> 
    130130               
    131131               
     
    140140               
    141141               
    142               <span class="attr">required</span> 
    143                
    144                
     142               
     143               
     144              <span class="attr">type:</span> <span class="value">integer</span> 
    145145               
    146146               
     
    156156           
    157157 
    158            
     158          <h3>Examples</h3><div class="preformat"> 
     159 
     160   IDL> a=zero_one(3)    
     161   IDL> help,a 
     162   A               FLOAT     = Array[3] 
     163   IDL> print,a 
     164         0.00000      1.00000      0.00000 
     165 
     166   IDL> a=zero_one(2,3)    
     167   IDL> help,a 
     168   A               FLOAT     = Array[2, 3] 
     169   IDL> print,a 
     170      0.00000      1.00000 
     171      1.00000      0.00000 
     172      0.00000      1.00000 
     173</div> 
    159174          <h3>Version history</h3> 
    160175           
    161176          <h4>Version</h4><div class="preformat"> 
    162  $Id: zero_one.pro 325 2007-12-06 10:04:53Z pinsard $ 
     177 $Id: zero_one.pro 373 2008-08-08 14:11:31Z pinsard $ 
    163178</div> 
    164179          <h4>History</h4><div class="preformat"> 
Note: See TracChangeset for help on using the changeset viewer.