eeg_uv2volt - Convert microvolts to volts [Volts] = eeg_uv2volt(uV) Simply, Volts = uV ./ 10^6
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;