Rename scansDir

This commit is contained in:
2024-08-01 12:32:47 -04:00
parent 54f375face
commit e3f4c1ee9c
9 changed files with 58 additions and 56 deletions

View File

@@ -1,5 +1,5 @@
%% CALLED WHEN ACCESSING 'CurveFit Display' %%
function [scLst, row, col] = NCdisplayGui(scansDir)
function [scLst, row, col] = NCdisplayGui(projectScansDir)
xPos=0.05;
btnWid=0.10;
btnHt=0.05;
@@ -49,7 +49,7 @@ function [scLst, row, col] = NCdisplayGui(scansDir)
end
% Read in numeric folder names
nlist=dir(fullfile(scansDir,'*'));
nlist=dir(fullfile(projectScansDir,'*'));
nnn=0;
for n=1:size(nlist,1)
if (~isempty(str2num(nlist(n).name)))