[19102] | 1 | Index: ../trunk-jpl/src/m/classes/taoinversion.m
|
---|
| 2 | ===================================================================
|
---|
| 3 | --- ../trunk-jpl/src/m/classes/taoinversion.m (revision 18667)
|
---|
| 4 | +++ ../trunk-jpl/src/m/classes/taoinversion.m (revision 18668)
|
---|
| 5 | @@ -25,6 +25,7 @@
|
---|
| 6 | vz_obs = NaN
|
---|
| 7 | vel_obs = NaN
|
---|
| 8 | thickness_obs = NaN
|
---|
| 9 | + surface_obs = NaN
|
---|
| 10 | end
|
---|
| 11 | methods
|
---|
| 12 | function obj = taoinversion(varargin) % {{{
|
---|
| 13 | @@ -123,6 +124,7 @@
|
---|
| 14 | fielddisplay(obj,'vy_obs','observed velocity y component [m/yr]');
|
---|
| 15 | fielddisplay(obj,'vel_obs','observed velocity magnitude [m/yr]');
|
---|
| 16 | fielddisplay(obj,'thickness_obs','observed thickness [m]');
|
---|
| 17 | + fielddisplay(obj,'surface_obs','observed surface elevation [m]');
|
---|
| 18 | disp('Available cost functions:');
|
---|
| 19 | disp(' 101: SurfaceAbsVelMisfit');
|
---|
| 20 | disp(' 102: SurfaceRelVelMisfit');
|
---|
| 21 | @@ -157,6 +159,7 @@
|
---|
| 22 | WriteData(fid,'object',obj,'class','inversion','fieldname','vy_obs','format','DoubleMat','mattype',1,'scale',1./yts);
|
---|
| 23 | WriteData(fid,'object',obj,'class','inversion','fieldname','vz_obs','format','DoubleMat','mattype',1,'scale',1./yts);
|
---|
| 24 | WriteData(fid,'object',obj,'class','inversion','fieldname','thickness_obs','format','DoubleMat','mattype',1);
|
---|
| 25 | + WriteData(fid,'object',obj,'class','inversion','fieldname','surface_obs','format','DoubleMat','mattype',1);
|
---|
| 26 |
|
---|
| 27 | %process control parameters
|
---|
| 28 | num_control_parameters=numel(obj.control_parameters);
|
---|