Skip to content

Commit

Permalink
Fast fix to icareview()
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnunez committed May 1, 2018
1 parent d586795 commit d0c0606
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
<img src="./extra/logo.png" width="128">

# artscreenEEG
### Version 0.12.3
### Version 0.12.4

**Authors: Michael D. Nunez, Cort Horton, Siyi Deng, William Winter, and Ramesh Srinivasan from the Human Neuroscience Lab at the University of California, Irvine**

Expand Down Expand Up @@ -82,4 +82,4 @@ Please submit issues and associated pull requests. All .m code contributors will
artscreenEEG is licensed under the GNU General Public License v3.0 and written by Michael D. Nunez, Cort Horton, Siyi Deng, William Winter, and Ramesh Srinivasan from the Human Neuroscience Lab at the University of California, Irvine.

### Version
The newest version of artscreenEEG is 0.12.3 indicating that artscreenEEG is still being developed (version 0)
The newest version of artscreenEEG is 0.12.4 indicating that artscreenEEG is still being developed (version 0)
4 changes: 2 additions & 2 deletions src/ica/icareview.m
Expand Up @@ -445,7 +445,7 @@ function PlotTrial_callback(~,~)
end
set(trialaxes,'ColorOrder',colororder);

cortplotx(trialaxes,xlabs,plotdata);
plotx(trialaxes,xlabs,plotdata);

ylim(trialaxes,[min(min(plotdata))-chansep/4 max(max(plotdata))+chansep/4]);
xlim(trialaxes,[0 xlabs(end)]);
Expand Down Expand Up @@ -491,7 +491,7 @@ function PlotErp_callback(~,~)
set(trialaxes,'ColorOrder',colororder);

erpplotdata=erpdata-erpsep*ones(nsamps,1)*(1:ncomps);
cortplotx(trialaxes,xlabs,erpplotdata);
plotx(trialaxes,xlabs,erpplotdata);

ylim(trialaxes,[min(min(erpplotdata))-erpsep/4 max(max(erpplotdata))+erpsep/4]);
xlim(trialaxes,[0 xlabs(end)]);
Expand Down

0 comments on commit d0c0606

Please sign in to comment.