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/Utilities/lineintersection.html

    r338 r402  
    117117          <h3>Return value</h3><div class="preformat"> 
    118118 2 possibilities: 
    119       1) by default: it is a vector of complex whose each element is the coordinates 
    120                      of the intersection point of a pair of straight lines. 
    121       2) if FLOAT is activated, it is a array of reals of dimension 2, 
    122          number_of_pairs_of_straight_lines whose each row is the coordinates 
    123          of the intersection point of a pair of straight line. 
     119  1) by default: it is a vector of complex whose each element is the  
     120     coordinates of the intersection point of a pair of straight lines. 
     121  2) if FLOAT is activated, it is a array of reals of dimension 2, 
     122     number_of_pairs_of_straight_lines whose each row is the coordinates 
     123     of the intersection point of a pair of straight line. 
    124124</div> 
    125125 
     
    188188 
    189189          <h3>Examples</h3><div class="preformat"> 
    190  IDL> abc1=linearequation(complex(1,2),[3,4]) 
    191  IDL> abc2=linearequation(complex(1,2),[8,15]) 
    192  IDL> print, lineintersection(abc1, abc2) 
     190 
     191   IDL> abc1=linearequation(complex(1,2),[3,4]) 
     192   IDL> abc2=linearequation(complex(1,2),[8,15]) 
     193   IDL> print, lineintersection(abc1, abc2) 
    193194 (      1.00000,      2.00000) 
    194  IDL> print, lineintersection(abc1, abc2,/float) 
     195   IDL> print, lineintersection(abc1, abc2,/float) 
    195196 1.00000      2.00000 
    196197</div> 
     
    198199           
    199200          <h4>Version</h4><div class="preformat"> 
    200  $Id: lineintersection.pro 327 2007-12-13 16:22:35Z pinsard $ 
     201 $Id: lineintersection.pro 375 2008-08-08 15:55:40Z pinsard $ 
    201202</div> 
    202203          <h4>History</h4><div class="preformat"> 
Note: See TracChangeset for help on using the changeset viewer.