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

    r249 r402  
    9696       
    9797        <dt><a href="different.html">different.pro</a></dt> 
    98         <dd>  calculate the different elements of 2 matrix of positive whole numbers.</dd> 
     98        <dd>  find the different elements of 2 matrixes of positive whole numbers.</dd> 
    9999       
    100100        <dt><a href="extrac2.html">extrac2.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, extrac2(a,[0,2],[3,4])             15      17             20      22 </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, extrac2(a,[0,2],[3,4])             15      17             20      22 </dd> 
    102102       
    103103        <dt><a href="inter.html">inter.pro</a></dt> 
    104         <dd>  calculate the intersection between 2 matrices of whole numbers </dd> 
     104        <dd>  find the intersection between 2 matrices of whole numbers   see also <a href="..//Matrix/different.html">different</a> and <a href="..//Matrix/union.html">union</a> </dd> 
    105105       
    106106        <dt><a href="make_selection.html">make_selection.pro</a></dt> 
     
    108108       
    109109        <dt><a href="union.html">union.pro</a></dt> 
    110         <dd>  calculate the union between 2 matrices of whole numbers </dd> 
     110        <dd>  find the union between 2 matrices of whole numbers   see also <a href="..//Matrix/different.html">different</a> and <a href="..//Matrix/inter.html">inter</a>.</dd> 
    111111       
    112112        <dt><a href="zero_one.html">zero_one.pro</a></dt> 
Note: See TracChangeset for help on using the changeset viewer.