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

    r338 r402  
    7979 
    8080    <h3>Return value</h3> 
    81  result 
     81 an array of n1 dimension or n1xn2 dimensions 
    8282 
    8383 
     
    9393      <font size="-1" color="#006633">required</font> 
    9494       
    95        
     95      <font size="-1" color="#006633">type:</font> <font size="-1" color="#006633"><i>integer</i></font> 
    9696       
    9797       
     
    108108       
    109109       
    110       <font size="-1" color="#006633">required</font> 
    111110       
    112111       
     112      <font size="-1" color="#006633">type:</font> <font size="-1" color="#006633"><i>integer</i></font> 
    113113       
    114114       
     
    123123     
    124124 
    125      
     125    <h3>Examples</h3><pre> 
     126 
     127   IDL> a=zero_one(3)    
     128   IDL> help,a 
     129   A               FLOAT     = Array[3] 
     130   IDL> print,a 
     131         0.00000      1.00000      0.00000 
     132 
     133   IDL> a=zero_one(2,3)    
     134   IDL> help,a 
     135   A               FLOAT     = Array[2, 3] 
     136   IDL> print,a 
     137      0.00000      1.00000 
     138      1.00000      0.00000 
     139      0.00000      1.00000 
     140 
    126141    </pre><h3>Version history</h3> 
    127142     
    128143    <h4>Version</h4> 
    129  $Id: zero_one.pro 325 2007-12-06 10:04:53Z pinsard $ 
     144 $Id: zero_one.pro 373 2008-08-08 14:11:31Z pinsard $ 
    130145 
    131146    <h4>History</h4> 
Note: See TracChangeset for help on using the changeset viewer.