Relocate project

This commit is contained in:
2024-09-10 13:23:18 -04:00
parent 3833f75184
commit a8cf3c5325
6220 changed files with 4859 additions and 69 deletions

View File

@@ -0,0 +1,11 @@
% Create and display Reference data in a table
global Exp
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]);