cargar_datos_silop

Read a text file generated by the old SilopToolbox or Amore software (files with '.sl' extension)..

Syntax

[medicion]= cargar_datos_silop(file)

Description

[medicion]= cargar_datos_silop(file) file is the name of the file.
The data structure is a cell array. Each element of the cell array is related to an individual sensor. Each member has the form:
Field 'nombre' is the sensor name.

Examples

% Lectura de un archivo:
[medi] = cargar_datos_silop('../simur_data/test_flexionmunecacodo.sl')
Unrecognized function or variable 'cargar_datos_silop'.
% Cada uno de los elementos del cell array se corresponde a un sensor.
% En este caso h indica el sensor del hombro, b el del brazo, a el del
% antebrazo y m el de la mano
medi{1}
 
medi{2}
 
% Representa loa acelerometros:
plot(medi{4}.Accel)
% El giroscopio en Y:
plot(medi{4}.tiempo(500:1000),medi{4}.Gyro(500:1000,2))