From 741b253ade55c1a9fde1b1e140c485cf4a15508c Mon Sep 17 00:00:00 2001
From: Jacques Grelet <jacques.grelet@ird.fr>
Date: Thu, 9 Dec 2010 15:05:47 +0000
Subject: [PATCH] display output on console

---
 dm_processing/get_cm_from_dm.m | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dm_processing/get_cm_from_dm.m b/dm_processing/get_cm_from_dm.m
index e0af2c1..52c4727 100644
--- a/dm_processing/get_cm_from_dm.m
+++ b/dm_processing/get_cm_from_dm.m
@@ -62,6 +62,8 @@ while ~feof(fid)
   if ~strcmp(current_pf, pf)
      fprintf(fid_cm, '\n%s :\n\n', upper(pf)); 
      fprintf(fid_dm, '\n%s :\n\n', upper(pf)); 
+     % display to screen
+     fprintf( '\n%s :\n', upper(pf)); 
      current_pf = pf;
   end
     
@@ -74,6 +76,7 @@ while ~feof(fid)
   % ----------------
   if ~isempty(match)
     fprintf(fid_dm, '%s\n', match{1}{1});
+    fprintf('%s -> %s\n', match{1}{1}, cm);
   end
   
   % close netcdf file
-- 
GitLab