Who even knows at this point

This commit is contained in:
2024-07-30 13:42:48 -04:00
parent fe9b338324
commit 79e3676ed3
38 changed files with 465 additions and 746 deletions

View File

@@ -1,11 +1,11 @@
%Create and display Reference data in a table
% Create and display Reference data in a table
global Exp
DexpN= Exp(expN).DexpN;
DexpN=Exp(expN).DexpN;
rnames=Exp(expN).Dexp(DexpN).RFrnames;
data= Exp(expN).Dexp(DexpN).RFdata;
cnames= [{'Median'},{'Mean'},{'STD'},{'Minimum'},{'Maximum'}];
f = figure('Menubar','none','Position',[1000 100 640 750],'Name',Exp(expN).Dexp(DexpN).ExpFoldr );
t = uitable('Parent',f,'Data',data,'ColumnName',cnames,...
'RowName',rnames,'Position',[20 20 620 730]);
data=Exp(expN).Dexp(DexpN).RFdata;
cnames=[{'Median'},{'Mean'},{'STD'},{'Minimum'},{'Maximum'}];
f=figure('Menubar','none','Position',[1000 100 640 750],...
'Name',Exp(expN).Dexp(DexpN).ExpFoldr );
t=uitable('Parent',f,'Data',data,'ColumnName',cnames,...
'RowName',rnames,'Position',[20 20 620 730]);