<p><b>ringler@lanl.gov</b> 2012-03-14 09:34:36 -0600 (Wed, 14 Mar 2012)</p><p><br>
change name of MATLAB plotting routine to be something other than &quot;plot&quot; to keep MATLAB from complaining about namespace conflicts<br>
</p><hr noshade><pre><font color="gray">Deleted: branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot.m
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot.m        2012-03-14 02:56:14 UTC (rev 1635)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot.m        2012-03-14 15:34:36 UTC (rev 1636)
@@ -1,47 +0,0 @@
-%clear all
-
-nVertLevels = 20
-nx = 16
-ny = 50
-iLevel = 1
-var = 'temperature'
-
-ncid_hex = netcdf.open('10000m_20levs/output.nc','nc_nowrite');
-
-[dimname, dimlen] = netcdf.inqDim(ncid_hex,0);
-
-ID_hex = netcdf.inqVarID(ncid_hex,var);
-work = netcdf.getVar(ncid_hex,ID_hex);
-size(work)
-
-workq = work(1,:);
-size(workq)
-
-r = min(workq);
-zmin = min(r)
-r = max(workq);
-zmax = max(r)
-
-inc = (zmax - zmin) / 20;
-zlevs = zmin:inc:zmax
-
-hex = reshape(workq, nx, ny);
-size(hex)
-
-workavg=hex;
-for j=2:2:ny
-    for i=2:nx-1
-        hex(i,j,:) = (workavg(i+1,j,:)+workavg(i,j,:))/2.0;
-    end
-end
-clear workavg
-
-hexp = hex(1:nx,1:ny);
-b=hexp;
-figure(1)
-b = transpose(b);
-contourf(b,zlevs)
-caxis([zmin zmax])
-colormap(jet)
-colorbar
-

Added: branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot_baroclinic_channel.m
===================================================================
--- branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot_baroclinic_channel.m                                (rev 0)
+++ branches/ocean_projects/ocean_test_cases_staging/ocean/baroclinic_channel/plot_baroclinic_channel.m        2012-03-14 15:34:36 UTC (rev 1636)
@@ -0,0 +1,47 @@
+%clear all
+
+nVertLevels = 20
+nx = 16
+ny = 50
+iLevel = 1
+var = 'temperature'
+
+ncid_hex = netcdf.open('10000m_20levs/output.nc','nc_nowrite');
+
+[dimname, dimlen] = netcdf.inqDim(ncid_hex,0);
+
+ID_hex = netcdf.inqVarID(ncid_hex,var);
+work = netcdf.getVar(ncid_hex,ID_hex);
+size(work)
+
+workq = work(1,:);
+size(workq)
+
+r = min(workq);
+zmin = min(r)
+r = max(workq);
+zmax = max(r)
+
+inc = (zmax - zmin) / 20;
+zlevs = zmin:inc:zmax
+
+hex = reshape(workq, nx, ny);
+size(hex)
+
+workavg=hex;
+for j=2:2:ny
+    for i=2:nx-1
+        hex(i,j,:) = (workavg(i+1,j,:)+workavg(i,j,:))/2.0;
+    end
+end
+clear workavg
+
+hexp = hex(1:nx,1:ny);
+b=hexp;
+figure(1)
+b = transpose(b);
+contourf(b,zlevs)
+caxis([zmin zmax])
+colormap(jet)
+colorbar
+

</font>
</pre>