displayobservations

PURPOSE ^

DISPLAYOBSERVATIONS - display observations information

SYNOPSIS ^

function displayobservations(md)

DESCRIPTION ^

DISPLAYOBSERVATIONS - display observations information

   To avoid clobbering display.m with every field from model md, 
   we create this routine that displays observations information from model md, 
   only if requested.

   Usage:
      displayobservations(md)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function displayobservations(md)
0002 %DISPLAYOBSERVATIONS - display observations information
0003 %
0004 %   To avoid clobbering display.m with every field from model md,
0005 %   we create this routine that displays observations information from model md,
0006 %   only if requested.
0007 %
0008 %   Usage:
0009 %      displayobservations(md)
0010 
0011 disp(sprintf('   Observations:'));
0012 disp(sprintf('      vx_obs [m/a]: (%i)',length(md.vx_obs)));
0013 disp(sprintf('      vy_obs [m/a]: (%i)',length(md.vy_obs)));
0014 disp(sprintf('      vel_obs [m/a]: (%i)',length(md.vel_obs)));
0015 disp(sprintf('      accumulation [m/a]: (%i)',length(md.accumulation)));
0016 disp(sprintf('      observed_temperature [K]: (%i)',length(md.observed_temperature)));
0017 disp(sprintf('      geothermalflux [W/m^2]: (%i)',length(md.geothermalflux)));

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003