-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathejecutar.m
52 lines (39 loc) · 1.04 KB
/
ejecutar.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
%ejecutar is the run script to execute the data acquisition system.
%{
Laboratorio de Inteligencia y Visión Artificial
ESCUELA POLITÉCNICA NACIONAL
Quito - Ecuador
autor: ztjona!
"I find that I don't understand things unless I try to program them."
-Donald E. Knuth
05 April 2021
Matlab 9.9.0.1592791 (R2020b) Update 5.
%}
%{
Last version 1.8 by Alexander M.
23-Sep-2024
"The question is not whether machines think, but whether they do it better
than humans."
%}
%% Clean environment
close all;
% myoObject global variable that handles myo armband
% deviceType enum class that tells the device used
clearvars -global -except myoObject deviceType gForceObject;
clc;
%% Timers and path
addpath(genpath(pwd));
global currentDirectory;
pathname = mfilename('fullpath');
n = length(pathname);
while pathname(n) ~= '\'
n = n - 1;
end
currentDirectory = pathname(1:(n-1));
cleaningTimers();
%% Start data acquisition
%listaRecolectoresDatos();
app = listaRecolectoresDatos_App();
%app.figure1.Visible = 'on';
cleaningTimers();