SM_ADC  1.0
Приём данных АЦП через разделяемую память
install.m
Go to the documentation of this file.
1 % Installation script of easyLink Library.
2 % Copyright (c) 2014 FEMTO-ST, ENSMM, UFC, CNRS.
3 
4 disp('Installation of easyLink Library.');
5 disp(' ');
6 
7 path = fileparts( mfilename('fullpath') );
9 disp('Current easyLink folder has been added to the MATLAB path.');
10 clear path
11 
12 disp(' ');
13 r = input('Do you wish to save the current path for use in future MATLAB sessions [y/n]? ','s');
14 if r=='Y' || r=='y'
15  if (savepath==0)
16  disp('The path has been saved successfully for use in future sessions.');
17  else
18  disp('The path could not be saved for use in future sessions.');
19  end
20 end
21 
22 disp(' ');
23 r = input('Would you like to specify the compiler options with "mex -setup" command [y/n])? ','s');
24 if r=='Y' || r=='y'
25  mex -setup
26 end
27 
28 clear r
29 disp(' ');
30 disp('Installation completed.');
31 
32 
Installation script of easyLink Library CNRS disp('Installation of easyLink Library.')
r
Definition: install.m:13
Installation script of easyLink Library UFC
Definition: install.m:2
addpath(path)
path
Definition: install.m:7
Installation script of easyLink Library ENSMM
Definition: install.m:2
Installation script of easyLink Library Copyright(c) 2014 FEMTO-ST