Skip to content

Instantly share code, notes, and snippets.

@neurojojo
Created March 12, 2022 19:46
Show Gist options
  • Save neurojojo/27f9b351e64206cb5811828e045e4e75 to your computer and use it in GitHub Desktop.
Save neurojojo/27f9b351e64206cb5811828e045e4e75 to your computer and use it in GitHub Desktop.
joydivisionplot.m
figure('color','w'); ax = axes('nextplot','add');
yd = 2; % Alter this variable to space your Tseries further apart on the y-axis
rowfun( @(cellnumber,tseries) plot(ax,1+tseries{1}+yd*cellnumber,'color','k'),...
mytable(:,{'CellNumber','Tseries'}) )
set(ax,'YTick',[],'YColor','w','TickDir','out')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment