Home > bioelectromagnetism > eeg_plot_metric.m

eeg_plot_metric

PURPOSE ^

eeg_plot_metric - create TeX plot label (Y is uV, X is msec)

SYNOPSIS ^

function eeg_plot_metric

DESCRIPTION ^

 eeg_plot_metric - create TeX plot label (Y is uV, X is msec)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function eeg_plot_metric
0002 
0003 % eeg_plot_metric - create TeX plot label (Y is uV, X is msec)
0004 
0005 % $Revision: 1.1 $ $Date: 2004/11/12 01:32:33 $
0006 
0007 % Licence:  GNU GPL, no express or implied warranties
0008 % History:  07/2000, Darren.Weber_at_radiology.ucsf.edu
0009 %
0010 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0011 
0012 Font.FontName   = 'Helvetica';
0013 Font.FontUnits  = 'Pixels';
0014 Font.FontSize   = 12;
0015 Font.FontWeight = 'normal';
0016 Font.FontAngle  = 'normal';
0017 
0018 ylab = get(gca,'ylabel');
0019 set(ylab,'string','\muV','Rotation',0,Font,'units','normalized',...
0020     'Position',[-0.10  0.95 0]);
0021 xlab = get(gca,'xlabel');
0022 set(xlab,'string','msec','Rotation',0,Font,'units','normalized',...
0023     'Position',[ 1.07 -0.01 0]);
0024     
0025 return

Generated on Mon 15-Aug-2005 15:36:19 by m2html © 2003