This module allows to get raw data from .mat files saved from Siemens LMS TestLab.
$ from pyLMS import *
# Import packages
from pyLMS import *
filename = 'data/accelerometro.mat'
sensor = pyLMS(filename)
time = sensor['signals']['x']
acceleration = sensor['signals']['y']
units = sensor['units']
magnitudes = sensor['magnitudes']