diff +grid/Ti.m @ 348:145b3b8c1e4e martin-thesis-plots

Played around with Ti show and plot settings to create pretty pics for thesis.
author Martin Almquist <martin.almquist@it.uu.se>
date Sat, 03 Dec 2016 23:00:44 +0100
parents 48b6fb693025
children
line wrap: on
line diff
--- a/+grid/Ti.m	Mon Sep 12 15:18:25 2016 +0200
+++ b/+grid/Ti.m	Sat Dec 03 23:00:44 2016 +0100
@@ -73,7 +73,7 @@
             u = linspace(0,1,nu);
             v = linspace(0,1,nv);
 
-            m = 100;
+            m = 1000;
 
             X = zeros(nu+nv,m);
             Y = zeros(nu+nv,m);
@@ -102,12 +102,15 @@
 
             if(nu>2 || nv>2)
                 h_grid = obj.plot(nu,nv);
-                set(h_grid,'Color',[0 0.4470 0.7410]);
+%                 set(h_grid,'Color',[0 0.4470 0.7410]);
+                set(h_grid,'Color',[0 0 0]);
+                set(h_grid,'LineWidth',1);
             end
 
             h_bord = obj.plot(2,2);
-            set(h_bord,'Color',[0.8500 0.3250 0.0980]);
-            set(h_bord,'LineWidth',2);
+%             set(h_bord,'Color',[0.8500 0.3250 0.0980]);
+            set(h_bord,'Color',[0 0 0]);
+            set(h_bord,'LineWidth',3);
         end