Home > bioelectromagnetism > eeg_uV2Volt.m

eeg_uV2Volt

PURPOSE ^

eeg_uv2volt - Convert microvolts to volts

SYNOPSIS ^

function [Volts] = eeg_uv2volt(uV);

DESCRIPTION ^

 eeg_uv2volt - Convert microvolts to volts

   [Volts] = eeg_uv2volt(uV)

   Simply, Volts = uV ./ 10^6

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [Volts] = eeg_uv2volt(uV);
0002 
0003 % eeg_uv2volt - Convert microvolts to volts
0004 %
0005 %   [Volts] = eeg_uv2volt(uV)
0006 %
0007 %   Simply, Volts = uV ./ 10^6
0008 %
0009 
0010 % $Revision: 1.1 $ $Date: 2004/11/12 01:32:33 $
0011 
0012 % Licence:  GNU GPL, no implied or express warranties
0013 % History:  11/2001, Darren.Weber_at_radiology.ucsf.edu
0014 %
0015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0016 
0017 Volts = uV ./ 10^6;

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