Matlab
H
HowTo
- How write a command using multiple lines
- Put three points ( ... ) at the end of the line
R
readtable
U
uigetfile
- uigetfile(filter,title,defname)
- filter: {'*.m';'*.slx';'*.mat';'*.*'}
- title: specify the title of the GUI
- defname: defaul name of the file or the directory
- Ex:
[file,path] = uigetfile( ...
{'*.csv;*.txt','Comma separated'}, ...
'Select descriptors matrix');