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/Obsolete/directory-overview.html

    r321 r402  
    9999       
    100100        <dt><a href="extrait.html">extrait.pro</a></dt> 
    101         <dd>  extraction of subdomains of matrices;  Even if the subdomain is "pierced" (see the example)  By default, IDL can make extractions of subdomain:        IDL> a=indgen(5,5)       IDL> print, a              0       1       2       3       4              5       6       7       8       9             10      11      12      13      14             15      16      17      18      19             20      21      22      23      24       IDL> print, a[[0,2],3]             15      17       IDL> print, a[[0,2],*]              0       2              5       7             10      12             15      17             20      22  but       IDL> print, a[[0,2],[3,4]]             15      22  while       IDL> print, extrait(a,[0,2],[3,4])             15      17             20      22    you better use extrac2 </dd> 
     101        <dd>  extraction of subdomains of matrices;  Even if the subdomain is "pierced" (see the example)  By default, IDL can make extractions of subdomain:     IDL> a=indgen(5,5)    IDL> print, a              0       1       2       3       4              5       6       7       8       9             10      11      12      13      14             15      16      17      18      19             20      21      22      23      24    IDL> print, a[[0,2],3]             15      17    IDL> print, a[[0,2],*]              0       2              5       7             10      12             15      17             20      22  but    IDL> print, a[[0,2],[3,4]]             15      22  while    IDL> print, extrait(a,[0,2],[3,4])             15      17             20      22    you better use extrac2 </dd> 
    102102       
    103103        <dt><a href="ficdate.html">ficdate.pro</a></dt> 
Note: See TracChangeset for help on using the changeset viewer.