Last active
August 29, 2015 14:07
-
-
Save kaspersoerensen/dd44957982cfdc76d7a0 to your computer and use it in GitHub Desktop.
Lav liste med csv-filer MATLAB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Sti til mappen med CSV filer | |
path=''; | |
List=dir([path '*.csv']); | |
lbh = uicontrol(fh,'Style','listbox',... | |
'String',{List.name}',... | |
'Value',1,); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment