Ignore:
Timestamp:
May 14, 2009, 2:24:54 PM (16 years ago)
Author:
rwilson
Message:

Back-merge from Numeric trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy/anuga/utilities/numerical_tools.py

    r6462 r7035  
    8383    # Compute angle
    8484    p = num.inner(v1, v2)
    85     c = num.inner(v1, normal_vector(v2)) # Projection onto normal
     85    c = num.inner(v1, normal_vector(v2))    # Projection onto normal
    8686                                            # (negative cross product)
    8787       
     
    238238def ensure_numeric(A, typecode=None):
    239239    """Ensure that sequence is a numeric array.
     240
    240241    Inputs:
    241242        A: Sequence. If A is already a numeric array it will be returned
Note: See TracChangeset for help on using the changeset viewer.