# HG changeset patch # User ulalume3 # Date 1382719280 -7200 # Node ID 1122ee9ef1513eb14568eea2aa0e5e2065693912 # Parent a0b073b1f684e10df772245f2d1ff4add3b0b7d7 Changed dytpe of licel files to i4. diff -r a0b073b1f684 -r 1122ee9ef151 licel.py --- a/licel.py Mon Feb 18 12:21:05 2013 +0100 +++ b/licel.py Fri Oct 25 18:41:20 2013 +0200 @@ -54,7 +54,7 @@ # Import the data for current_channel_info in channel_info: - raw_data = np.fromfile(f, 'l', int(current_channel_info['DataPoints'])) + raw_data = np.fromfile(f, 'i4', int(current_channel_info['DataPoints'])) a = np.fromfile(f, 'b', 1) b = np.fromfile(f, 'b', 1)