Skip to content

Commit

Permalink
Small typo fix. This issue has been tested, and is ready to resolve.
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-engel-usgs committed Oct 5, 2017
1 parent 6c4a227 commit 8d4d510
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions VMT_SaveExcelOutput.m
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
% -----
workingSheet = {'Planview'};
workingTopLeft = horzcat(workingTopLeft,...
{'A2' 'B2' 'A1'});
{'A2' 'B2' 'C2' 'A1'});
workingPropStruct = horzcat(workingPropStruct,...
{H.d1,H.n2,H.h3});
{H.d1,H.t1,H.n2,H.h3});

vmin = num2str(V.plotSettings.planview.depth_range_min);
vmax = num2str(V.plotSettings.planview.depth_range_max);
Expand Down Expand Up @@ -149,6 +149,8 @@
i=i+1;
sout{i} = timestamp;
i=i+1;
sout{i} = ID;
i=i+1;
sout{i} = pvdata';
i=i+1;
sout{i} = pvheaders(1,:);
Expand Down

0 comments on commit 8d4d510

Please sign in to comment.