Skip to content

Commit

Permalink
first commit for all files
Browse files Browse the repository at this point in the history
  • Loading branch information
juneeybug committed Sep 6, 2015
0 parents commit ce59e1b
Show file tree
Hide file tree
Showing 28 changed files with 65 additions and 0 deletions.
Binary file added GdiPlus.dll
Binary file not shown.
Binary file added boost_date_time-vc80-mt-1_40.dll
Binary file not shown.
Binary file added boost_filesystem-vc80-mt-1_40.dll
Binary file not shown.
Binary file added boost_regex-vc80-mt-1_40.dll
Binary file not shown.
Binary file added boost_signals-vc80-mt-1_40.dll
Binary file not shown.
Binary file added boost_system-vc80-mt-1_40.dll
Binary file not shown.
Binary file added boost_thread-vc80-mt-1_40.dll
Binary file not shown.
65 changes: 65 additions & 0 deletions convertPlx2Mat.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
function convertPlx2Mat(sessiondate)

global DATADIR
global mk

day = sessiondate;
daystr = num2str(day);

%% PLEXON COMPUTERS
% Superfaun, LiquidSword, Pinky, Pipe, Adjule.



s = getdaysfiles(day,mk,'*superfaun*.plx');
path = s{1};
k = path(1:end-4);
str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-s',' ','-e',' ','-a']
% str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-a']
[status,cmdout] = dos(str);



l = getdaysfiles(day,mk,'*liquidsword*.plx');
if(isempty(l))
l = getdaysfiles(day,mk,'*Liquidsword*.plx');
end
if(isempty(l))
l = getdaysfiles(day,mk,'*LiquidSword*.plx');
end

if(~isempty(l))
path = l{1};
k = path(1:end-4);
str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-s']
[status,cmdout] = dos(str);
end


p = getdaysfiles(day,mk,'*pinky*.plx');
if(~isempty(p))
path = p{1};
k = path(1:end-4);
str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-s']
[status,cmdout] = dos(str);
end

pi = getdaysfiles(day,mk,'*pipe*.plx');
if(~isempty(pi))
path = pi{1};
k = path(1:end-4);
str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-s']
[status,cmdout] = dos(str);
end


ad = getdaysfiles(day,mk,'*Adjule*.plx');
if(~isempty(ad))
path = ad{1};
k = path(1:end-4);
str = ['plx2mat',' ','-o',' ',k,'.mat',' ',k,'.plx',' ','-s']
[status,cmdout] = dos(str);
end



Binary file added cyggcc_s-1.dll
Binary file not shown.
Binary file added cygwin1.dll
Binary file not shown.
Binary file added icudt42.dll
Binary file not shown.
Binary file added icuin42.dll
Binary file not shown.
Binary file added icuio42.dll
Binary file not shown.
Binary file added icule42.dll
Binary file not shown.
Binary file added icuuc42.dll
Binary file not shown.
Binary file added libexpat.dll
Binary file not shown.
Binary file added libhdf5.dll
Binary file not shown.
Binary file added libhdf5_hl.dll
Binary file not shown.
Binary file added libmat.dll
Binary file not shown.
Binary file added libmex.dll
Binary file not shown.
Binary file added libmwfl.dll
Binary file not shown.
Binary file added libmwi18n.dll
Binary file not shown.
Binary file added libmx.dll
Binary file not shown.
Binary file added libut.dll
Binary file not shown.
Binary file added msvcp80.dll
Binary file not shown.
Binary file added msvcr80.dll
Binary file not shown.
Binary file added plx2mat.exe
Binary file not shown.
Binary file added zlib1.dll
Binary file not shown.

0 comments on commit ce59e1b

Please sign in to comment.