summaryrefslogtreecommitdiff
path: root/xmds2/realistic_Rb_and_fields/niceplotset.m
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2012-12-28 23:44:54 -0500
committerEugeniy Mikhailov <evgmik@gmail.com>2012-12-28 23:44:54 -0500
commitb35062928c53e376a0849b9ddb4b0ca1759e67df (patch)
tree66296cc9721f010fb9221437e5356ca592fbf1b5 /xmds2/realistic_Rb_and_fields/niceplotset.m
parent91a795b8042742e1a534e28bdd5841ec0cf406c9 (diff)
downloadNresonances-b35062928c53e376a0849b9ddb4b0ca1759e67df.tar.gz
Nresonances-b35062928c53e376a0849b9ddb4b0ca1759e67df.zip
plot quality improved
Diffstat (limited to 'xmds2/realistic_Rb_and_fields/niceplotset.m')
-rw-r--r--xmds2/realistic_Rb_and_fields/niceplotset.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/xmds2/realistic_Rb_and_fields/niceplotset.m b/xmds2/realistic_Rb_and_fields/niceplotset.m
new file mode 100644
index 0000000..42fa855
--- /dev/null
+++ b/xmds2/realistic_Rb_and_fields/niceplotset.m
@@ -0,0 +1,19 @@
+function niceplotset(fhandle)
+ %% Increases default font
+ fontSize=24;
+ %% increase width of the lines
+ %lineWidth=2;
+
+ % sets axes font
+ set(gca,'FontSize',fontSize );
+ %set(gca,'FontSize',fontSize, 'LineWidth', lineWidth);
+ %box(axes1,'on');
+ %hold(axes1,'off');
+
+ % Create xlabel
+ %xlabel('','FontSize',fontSize);
+ %ylabel('','FontSize',fontSize);
+
+ %title('', 'FontSize',fontSize);
+
+end