资源简介
#3.0版本#调用eeglab批量读取excel文件中的脑电数据并绘制脑电拓扑图,算法可以根据用户输入读取指定列的特征,指定列的数据,并将数据特征映射到图片保存的文件名中
![](http://www.nz998.com/pic/42190.jpg)
代码片段和文件信息
% cbar() - Display full or partial color bar
%
% Usage:
% >> cbar % create a vertical cbar on the right side of a figure
% >> cbar(type) % specify direction as ‘vert‘ or ‘horiz‘
% >> cbar(typecolors) % specify which colormap colors to plot
% else
% >> cbar(axhandle) % specify the axes to draw cbar in
%
% >> h = cbar(type|axhandlecolors minmax grad)
%
% Inputs:
% type - [‘vert‘|‘horiz‘] direction of the cbar {default: ‘vert‘)
% ELSE axhandle = handle of axes to draw the cbar
% colors - vector of colormap indices to display or integer to truncate upper
% limit by.
% (int n -> display colors [1:end-n]) {default: 0}
% minmax - [min max] range of values to label on colorbar
% grad - [integer] number of tick labels. {default: 5}.
%
% Example:
% >> colormap(‘default‘) % default colormap is 64-color ‘jet‘
% >> cbar(‘vert‘33:64); % plot a vertical cbar colored green->red
% % useful for showing >0 (warm) and 0 (green)
% % values only in a green=0 plot
%
% Author: Colin Humphries Arnaud Delorme CNL / Salk Institute Feb. 1998-
%
% See also: colorbar()
%123456789012345678901234567890123456789012345678901234567890123456789012
% Copyright (C) Colin Humphries CNL / Salk Institute Feb. 1998
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2 of the License or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; if not write to the Free Software
% Foundation Inc. 59 Temple Place Suite 330 Boston MA 02111-1307 USA
% $Log: cbar.mv $
% Revision 1.7 2007/02/03 04:05:32 toby
% Help edit
%
% Revision 1.6 2006/09/12 16:52:04 arno
% Minor fix and debugging (this function should be reprogrammed)
%
% Revision 1.5 2006/02/16 21:21:06 arno
% same
%
% Revision 1.4 2006/02/16 21:20:35 arno
% new option pos
%
% Revision 1.3 2004/05/07 16:07:49 scott
% help comments - added a useful example -sm
%
% Revision 1.2 2003/07/30 01:53:13 arno
% adding grad option
%
% Revision 1.1 2002/04/05 17:36:45 jorn
% Initial revision
%
% 12-13-98 added minmax arg -Scott Makeig
% 01-25-02 reformated help & license added links -ad
function [handleimH]=cbar(argcolorsminmax grad)
if nargin < 2
colors = 0;
end
posscale = ‘off‘;
if nargin < 1
arg = ‘vert‘;
ax = [];
else
if isempty(arg)
arg = 0;
end
if arg(1) == 0
ax = [];
arg = ‘vert‘;
elseif strcmpi(arg ‘pos‘)
ax = [];
arg = ‘vert‘;
posscale = ‘on‘;
el
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6457 2013-10-13 22:52 cbar.m
文件 30699 2013-01-14 16:25 chanlocsposi.mat
文件 835 2020-01-02 14:38 chanlocsseek.m
文件 7249 2020-01-04 17:34 main.m
文件 65189 2014-08-31 21:48 topoplot.m
相关资源
- 联想W520/T520笔记本电脑电路原理图
- 编程实现二维DCT变换
- 图像二值化
- 用FFT对信号进行频谱分析
- Tone-Reservation
- QGA 量子遗传算法
- 差分形式的阻滞增长模型
- 遗传算法的M文件
- 简单二阶互联系统的非线性动力学分
- 基于ADS1298与WiFi的脑电信号采集与传输
- 手写数字识别-模板匹配法
- Stock_Watson_动态因子分析模型
- 果蝇优化算法优化支持向量回归程序
- 自己做的一个简单GUI扑克纸牌识别-
- 基于SVM及两类运动想象的多通道特征
- multi output SVR
- AR过程的线性建模过程与各种功率谱估
- PCNN TOOLBOX
- plstoolbox.zip
- 中国国家基础地理信息系统GIS数据
- 粒子群微电网优化调度
- 矩阵分析-经典教材-中文版-Roger.A.Ho
- 压缩感知TwIST
- 基于最小错误率的贝叶斯手写数字分
- 最全系统辨识源代码,包括多种最小
- 导弹制导实验
- 画跟踪精确度图的程序.zip
- 重力场大地水准面及重力异常阶次误
- prtools5.2.3工具包
- 脉冲耦合神经网络工具箱PCNN-toolbox
评论
共有 条评论