Skip to content

Commit

Permalink
Merge branch 'bono' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
cliu3 committed Nov 19, 2015
2 parents 04f735f + 360cb26 commit ac4d6e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions filter/hmmgeolocate1.m
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,11 @@ function hmmgeolocate(tagno,mode,viewres,Duser,ext)
%% Creating *.mat file
filename = sprintf('result%s',td.tagno);
disp(sprintf('Saving -> %s.mat <- in\n%s',filename,cd))
save(filename,'result')
%save(filename,'result','-v7.3'); %for large bathymetric databases / long tags struct is too large for v7 datatype
try
save(filename,'result')
catch EM
save(filename,'result','-v7.3'); %for large bathymetric databases / long tags struct is too large for v7 datatype
end
disp(sprintf('\nDONE geolocating!\n'))

%% View smoothed distribution
Expand Down

0 comments on commit ac4d6e7

Please sign in to comment.