Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

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

    r24255 r24256  
    3232    datatype = options.getfieldvalue('format')
    3333    mattype = options.getfieldvalue('mattype', 0)  #only required for matrices
    34     timeserieslength = options.getfieldvalue('timeserieslength', - 1)
     34    timeserieslength = options.getfieldvalue('timeserieslength', -1)
    3535
    3636    #Process sparse matrices
     
    112112            data = np.array([data])
    113113        elif isinstance(data, (list, tuple)):
    114             data = np.array(data).reshape(- 1, )
     114            data = np.array(data).reshape(-1, )
    115115        if np.ndim(data) == 1:
    116116            if np.size(data):
     
    152152            data = np.array([data])
    153153        elif isinstance(data, (list, tuple)):
    154             data = np.array(data).reshape(- 1, )
     154            data = np.array(data).reshape(-1, )
    155155        if np.ndim(data) == 1:
    156156            if np.size(data):
     
    194194            data = np.array([data])
    195195        elif isinstance(data, (list, tuple)):
    196             data = np.array(data).reshape(- 1, )
     196            data = np.array(data).reshape(-1, )
    197197        if np.ndim(data) == 1:
    198198            if np.size(data):
     
    264264                matrix = np.array([matrix])
    265265            elif isinstance(matrix, (list, tuple)):
    266                 matrix = np.array(matrix).reshape(- 1, )
     266                matrix = np.array(matrix).reshape(-1, )
    267267            if np.ndim(matrix) == 1:
    268268                if np.size(matrix):
     
    287287                matrix = np.array([matrix])
    288288            elif isinstance(matrix, (list, tuple)):
    289                 matrix = np.array(matrix).reshape(- 1, )
     289                matrix = np.array(matrix).reshape(-1, )
    290290            if np.ndim(matrix) == 1:
    291291                matrix = matrix.reshape(np.size(matrix), )
Note: See TracChangeset for help on using the changeset viewer.