Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
brianborchers authored Mar 26, 2021
1 parent 16a00b4 commit 0f559f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Examples/chap6/ex_6_3/ex_6_3a.m
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,5 @@
% Now, transpose to get L.
L=LT';

% save what will be needed for the next example script (ex_6_4b)
save ex_6_4_30000.mat G L tt mtrue d
% save what will be needed for the next example script (ex_6_3b)
save ex_6_3_30000.mat G L tt mtrue d
10 changes: 5 additions & 5 deletions Examples/chap6/ex_6_3/ex_6_3b.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
% from Parameter Estimation and Inverse Problems, 3rd edition, 2018
% by R. Aster, B. Borchers, C. Thurber
%
% This script produces the L-curve and GCV function for Example 6.4 for
% This script produces the L-curve and GCV function for Example 6.3 for

% make sure we have a clean environment
clear
Expand All @@ -18,12 +18,12 @@
global alpha;

% Load in the problem data.
load ex_6_4_30000.mat
load ex_6_3_30000.mat

% Setup G' and L';

% Load in the problem data.
load ex_6_4_30000.mat
load ex_6_3_30000.mat

% Setup G' and L';
GT=G';
Expand Down Expand Up @@ -73,5 +73,5 @@
ylabel('g(\alpha)');
bookfonts
print -deps2 c6fgcvstoch.eps
% save what will be needed for the next example script (ex_6_4c)
save workspace_ex_6_4b.mat
% save what will be needed for the next example script (ex_6_3c)
save workspace_ex_6_3b.mat
4 changes: 2 additions & 2 deletions Examples/chap6/ex_6_3/ex_6_3c.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
global alpha;

% Load in the problem data.
load ex_6_4_30000.mat
load ex_6_3_30000.mat

% Calculate some stuff not stored in the file.
GT=G';
Expand Down Expand Up @@ -164,5 +164,5 @@
bookfonts

% save the results for later analysis if desired
%save workspace_ex_6_4c.mat
%save workspace_ex_6_3c.mat

0 comments on commit 0f559f0

Please sign in to comment.