eeg_correlations.m
来自「Matlab下的EEG处理程序库」· M 代码 · 共 26 行
M
26 行
function [COR] = eeg_correlations(volt)
% EEG_CORRELATIONS - Pearsons correlations
%
% This utility simply implements the CORRCOEF command for a voltage
% data matrix with columns of electrodes and rows of sample points
%
% USEAGE: [COR] = eeg_correlations(volt)
%
% The utility returns a full matrix of correlation coefficients formed
% from voltage data array X whose each row is a sample point, and each
% column is an electrode.
%
% See also CORRCOEF
%
% $Revision: 1.2 $ $Date: 2003/03/02 03:20:43 $
% Licence: GNU GPL, no implied or express warranties
% Created: 07/00, Darren.Weber@flinders.edu.au
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
COR = corrcoef(volt);
return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?