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/ToBeReviewed/STRUCTURE/where_tag.html

    r290 r402  
    8888 
    8989      <div id="file_comments"> 
    90  Like WHERE but works on structure tag names 
     90 Like <a href="/Applications/itt/idl64/help/online_help/WHERE.html">WHERE</a> but works on structure tag names 
     91 
    9192 Obtain subscripts of elements in structure array for which 
    9293 a particular Tag has values in a range or matching specified values. 
    93  Like the WHERE function but for use with structures 
     94 
     95 Like the <a href="/Applications/itt/idl64/help/online_help/WHERE.html">WHERE</a> function but for use with structures 
    9496 </div> 
    9597 
     
    188190         
    189191            <div class="comments"> 
    190  Otherwise give the Tag Number, 
     192 Otherwise give the Tag Number 
    191193 </div> 
    192194             
     
    234236         
    235237            <div class="comments"> 
    236   [min,max] range to search for in Struct 
     238 [min,max] range to search for in STRUCT 
    237239 </div> 
    238240             
     
    249251         
    250252            <div class="comments"> 
    251  One or array of numbers to match for in Struct, 
     253 One or array of numbers to match for in STRUCT 
    252254 </div> 
    253255             
     
    255257 
    256258          <h3>Examples</h3><div class="preformat"> 
    257        Suppose STR is a structure with tags CAT_NO:indgen(10), and  
    258                NAME:strarr(10).   Find the indices where STR.CAT_NO is 
    259                between 3 and 5. 
    260  
    261        IDL> print, WHERE_TAG( str, TAG_NAME = 'CAT_NO', VALUE = [3,4,5] )  ;or 
    262        IDL> print, WHERE_TAG( str, TAG_NUM = 0, RANGE = [3,5])  
     259 
     260 Suppose STR is a structure with tags CAT_NO:indgen(10), and  
     261 NAME:strarr(10). Find the indices where STR.CAT_NO is between 3 and 5. 
     262 
     263   IDL> print, WHERE_TAG( str, TAG_NAME = 'CAT_NO', VALUE = [3,4,5] )  
     264 or 
     265   IDL> print, WHERE_TAG( str, TAG_NUM = 0, RANGE = [3,5])  
    263266</div> 
    264267          <h3>Version history</h3> 
    265268           
    266269          <h4>Version</h4><div class="preformat"> 
    267  $Id: where_tag.pro 262 2007-08-21 14:19:32Z pinsard $ 
     270 $Id: where_tag.pro 375 2008-08-08 15:55:40Z pinsard $ 
    268271 </div> 
    269272          <h4>History</h4><div class="preformat"> 
     
    279282          <h4>Restrictions</h4><div class="preformat"> 
    280283 User *must* specify (1) TAG_NAME or TAG_NUMBER to search, and (2) 
    281  the VALUES or RANGE to search on; 
     284 the VALUES or RANGE to search on. 
    282285</div> 
    283286         
Note: See TracChangeset for help on using the changeset viewer.