Changeset 12675


Ignore:
Timestamp:
07/20/12 15:05:10 (13 years ago)
Author:
jschierm
Message:

Separated python versions of various matlab functions into separate file.

Location:
issm/trunk-jpl/src/m/model
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/model/WriteData.py

    r12660 r12675  
     1import numpy
     2import math
     3import struct
     4from MatlabFuncs import *
     5
    16def WriteData(fid,*args):
    27        """
     
    611       WriteData(fid,*args)
    712        """
    8 
    9         import numpy
    10         import math
    11         import struct
    1213
    1314        #process options
     
    272273# }}}
    273274
    274 def strcmpi(str1,str2):
    275 
    276         if str1.lower() == str2.lower():
    277                 return True
    278         else:
    279                 return False
    280 
Note: See TracChangeset for help on using the changeset viewer.