Ignore:
Timestamp:
07/21/06 14:47:49 (18 years ago)
Author:
navarro
Message:

english and nicer header (2a)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/idldoc_html_output/ToBeReviewed/PLOTS/DIVERS/projsegment.html

    r138 r142  
    696696      </div> 
    697697 
    698       <div id="file_comments"></div> 
     698      <div id="file_comments"> 
     699 project linearly a segment, a vector whose boundaries are [a,b] on  
     700 a vector whose boundaries are [c,d] 
     701</div> 
    699702 
    700703       
     
    711714        <div class="routine_details" id="_projsegment"> 
    712715 
    713           <h2><a class="top" href="#container">top</a>projsegment </h2> 
     716          <h2><a class="top" href="#container">top</a>projsegment <span class="categories"> 
     717 calculation 
     718</span></h2> 
    714719         
    715720          <p class="header"> 
    716721            <span class="result">result = </span>projsegment(<span class="result"><a href="#_projsegment_param_vecteur">vecteur</a>, <a href="#_projsegment_param_bornes">bornes</a></span>, <a href="#_projsegment_keyword_MP">MP</a>=<span class="result">MP</span>)</p> 
    717722         
    718           <div class="comments"></div> 
    719  
    720            
     723          <div class="comments"> 
     724</div> 
     725 
     726          <h3>Return value</h3><div class="preformat">  
     727 A vector whose new boudaries are specified by BORNES. 
     728</div> 
    721729 
    722730           
     
    735743            </h4> 
    736744         
    737           <div class="comments"></div> 
     745          <div class="comments"> 
     746 A vector whose the first element must be the smallest one and the last must be the biggest one. 
     747</div> 
    738748             
    739749            <h4 id="_projsegment_param_bornes">bornes&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
     
    748758            </h4> 
    749759         
    750           <div class="comments"></div> 
     760          <div class="comments">  
     761 New boundaries of the vector. 
     762</div> 
    751763             
    752764 
     
    768780            </h4> 
    769781         
    770             <div class="comments"></div> 
     782            <div class="comments"> 
     783 Activate this keyword to the function send back this a vector of 2  
     784 elements which are the m and p of the linear projection y=mx+p used  
     785 to pass from the [a,b] segment to the [c,d] segment. 
     786</div> 
    771787             
    772788           
    773789 
    774            
    775            
    776            
    777            
    778            
     790          <h3>Examples</h3><div class="preformat"> 
     791    
     792   IDL> a=indgen(9)  
     793   IDL> print, a  
     794          0       1       2       3       4       5       6       7       8 
     795   IDL> print, projsegment(a,[0,80])  
     796          0      10      20      30      40      50      60      70      80 
     797   IDL> print, projsegment(a,[0,-80])   
     798          0     -10     -20     -30     -40     -50     -60     -70     -80 
     799   IDL> print, projsegment(a,[-80,0])    
     800        -80     -70     -60     -50     -40     -30     -20     -10      0 
     801</div> 
     802          <h3>Version history</h3> 
     803           
     804          <h4>Version</h4><div class="preformat"> 
     805 $Id$ 
     806</div> 
     807          <h4>History</h4><div class="preformat"></div> 
    779808           
    780809           
Note: See TracChangeset for help on using the changeset viewer.