Changeset 623 in lmdz_wrf
- Timestamp:
- Aug 21, 2015, 6:25:15 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var_tools.py
r606 r623 147 147 return boolv 148 148 149 def Nchar(N,string): 150 """ Function to provide 'N' times concatenated 'string' 151 N= number of copies 152 strin= string to reproduce 153 >>> Nchar(4,'#') 154 #### 155 """ 156 fname = 'Nchar' 157 158 newstring='' 159 for it in range(N): 160 newstring=newstring + string 161 162 return newstring 149 163 150 164 def variables_values(varName):
Note: See TracChangeset
for help on using the changeset viewer.